-
Help
DescriptionIn my situation, I've got a decent system; I was able to create I am creating separate renders for each of the branches. A single worker is taking up 10GB of memory. So I can't use multiple workers. I've tried all the options in the Performance chapter. Am I missing something? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 17 replies
-
It would help to look at a small reprex. |
Beta Was this translation helpful? Give feedback.
If you really need to use Quarto, then you would have to make a dynamic file target to save each section of
calendars
to a file, then map over those files inreport_calendars
. But if you can switch to R Markdown, the report is rendered in the same process that runs the target, so then you could just reference the object in the R code of the report. Either way,tar_load()
andtar_read()
are not meant for this scenario.