根据闪亮服务器的开放版本从Shiny app下载文件时防止超时

时间:2018-06-05 11:17:25

标签: r shiny timeout shiny-server

我创建了应用程序,除其他外,创建了添加了自定义水印的提供网址的屏幕截图。

在本地版本上,一切都很棒。当放在闪亮的服务器上时它可以正常工作......直到一次提供太多的网址。应用程序不会冻结,下载的文件是在虚拟服务器上运行的虚拟机上创建的,但下载并不会发生。

根据我的研究,我试图通过添加http_keepalive_timeout 50000;来修改shiny-server.conf文件 如下所示:

# Instruct Shiny Server to run applications as the user "shiny"
run_as shiny;
http_keepalive_timeout 50000;
# Define a server that listens on port 3838
server {
  listen 3838;

  # Define a location at the base URL
  location / {

    # Host the directory of Shiny Apps stored in this directory
    site_dir /srv/shiny-server;

    # Log all Shiny output to files in this directory
    log_dir /var/log/shiny-server;

    # When a user visits the base URL rather than a particular application,
    # an index of the applications available in this directory will be shown.
    directory_index on;
  }
}

我尝试将其设置为0并将其放入其他行。此选项仅适用于PRO版本,还是正常工作,下载问题出在其他地方?

1 个答案:

答案 0 :(得分:0)

很明显,我无法进行任何测试,但是您可以尝试增加app_idle_timeout的值(请参见http://docs.rstudio.com/shiny-server/#application-timeouts)。

我知道我的一个应用程序似乎应该与创建下载文件分开完成生成下载文件,因为这会减少空闲时间。我希望这会有所帮助,但否则,请提供一个可复制的示例供我测试,因为我对闪亮服务器的开放版和专业版有所了解。