-
As I've mentioned in other threads, However, sometimes I want to just 'run' a pipeline. This is mainly for interactive use. Ideally I'd want to run the pipeline, keeping all artefacts in-memory and without archiving them with Disk/cloud-based IO. Is this something possible currently? I have scoured the docs, and as far as I can tell a 'format = NULL' or equivalent isn't really supported. Can you advise? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
In development |
Beta Was this translation helpful? Give feedback.
In development
targets
, Target Markdown in interactive mode does most of what you describe. A{targets}
code chunk can have an entire target list, and when it runs, the objects end up in memory. It does still store and retrieve the data from disk though because it is important to test if the output can be saved in the selected format (helps avoid surprise bugs when you run the pipeline for real).