admin管理员组文章数量:1344927
I'm publishing a Shiny app written in R
to Shinyapps.io.
In RStudio, the "memory used" is 4.9 GiB after I run the app and come back to the editor:
When I do gc()
, this number doesn't change by more than 0.02 GiB.
When I do sum(sapply(ls(), function(x){object.size(get(x))}))
I get 62,186,696
, or about 62 MB.
This number includes a list object (class "magick-image") which stores about 33 low-quality images using the magick
package, and the size of that object is 15MB. The Github repo storing these (and nothing else) is 43MB.
When I push this to ShinyApps.io, I have to set the "instance size" to 8GB or it crashes. My memory use reported by Shinyapps is over 5GB:
So RStudio and Shinyapps.io are reporting comparable memory usage, but it is almost 2 orders of magnitude more than what is used to store my data. As the data slowly grows, I'm afraid I will hit the 8GB limit on my ShinyApps account.
I'm using a few packages as well, notably tidyverse
, and I know these take up memory but it doesn't seem like they would take up enough to account for the two orders increase in memory used.
Question: Am I looking at this the right way? And what else can I check to give me a clue as to how I can reduce my memory usage?
本文标签: rstudioReducing memory used in Shinyappsio for R projectStack Overflow
版权声明:本文标题:rstudio - Reducing memory used in Shinyapps.io for R project - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743761351a2534436.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论