If you have an orderly report that takes a very long time, or needs to run in parallel, you might need to send it to run on another computer. There are a number of ways of achieving this - the simplest might be to clone the source tree to another computer, run the reports there and use one of a number of possible approaches to sync the outputs between computers. However, there will be cases where that is not ideal, and you want to move around much less data around.
This vignette describes a way of parcelling together all dependencies of an orderly report into a zip file (a “bundle”) that can be distributed to another machine (e.g., via scp, rsync or a shared file system), run there, and returned. It does not provide a transparent approach to using high-performance computing with orderly as we feel that the specific circumstances are too varied to support this directly.
Overview
In order to use orderly bundles we make some assumptions and conventions.
First, we assume that you will be running your exported report on another machine (otherwise you would have access to the orderly tree) and that your report takes really quite a long time.
Second, we assume you have your own way of getting the bundled reports to your other machine and the completed bundles back again — we expect that the details here will be specific to your needs and situation and that the overhead of doing this will be trivial compared with the cost of running the report.
Third, we assume that you will deal with all issues around queuing, locking and fault tolerance. From orderly’s point of view work will be exported from orderly and at this point you’re in control - we expect it to come back computed at some point, though we do not enforce that.
Fourth, that the machine running the report can be trusted to actually run the report - if you have set up an orderly server that is safe from interactively run reports, don’t allow importing from anyone’s laptops if you want to preserve this.
Fifth, that you trust your remote machine with your data, and that the remote machine trusts your orderly archive enough to run arbitrary code on it.
The process
We will use the orderly demo example, and pack up the
use_dependency
report.
path <- orderly1::orderly_example("demo")
The use_dependency
report has a dependency, which we
run
id <- orderly1::orderly_run("other", parameters = list(nmin = 0),
echo = FALSE, root = path)
## [ name ] other
## [ id ] 20250731-134557-13e5b985
## [ sources ] functions.R
## [ parameter ] nmin: 0
## [ start ] 2025-07-31 13:45:57.095859
## [ data ] source => extract: 20 x 2
## [ parameter ] nmin: 0
## [ end ] 2025-07-31 13:45:57.14882
## [ elapsed ] Ran report in 0.05296087 secs
## [ artefact ] summary.csv: 3fac8347e152c84c96e6676413c718b7
## [ ... ] graph.png: 67b3e662440b3978ee78b9d4cc159884
orderly1::orderly_commit(id, root = path)
## [ commit ] other/20250731-134557-13e5b985
## [ copy ]
## [ import ] other:20250731-134557-13e5b985
## [ success ] :)
## [1] "/tmp/Rtmpm1WALZ/file1fe71474796c/archive/other/20250731-134557-13e5b985"
We need a place that we’ll put the bundles:
path_bundles <- tempfile()
Now, we can pack up use_dependency
to run
bundle <- orderly1::orderly_bundle_pack(path_bundles, "use_dependency",
root = path)
## [ name ] use_dependency
## [ id ] 20250731-134557-813b916d
## [ depends ] other@20250731-134557-13e5b985:summary.csv -> incoming.csv
## [ start ] 2025-07-31 13:45:57.507962
## [ bundle pack ] 20250731-134557-813b916d
bundle
## $id
## [1] "20250731-134557-813b916d"
##
## $path
## [1] "/tmp/Rtmpm1WALZ/file1fe77db59ac8/20250731-134557-813b916d.zip"
orderly_bundle_pack
has created a zip file. The format
of this file is internal to orderly (it will likely change and will at
some point become resistant to tampering), but contains:
zip::zip_list(bundle$path)
## # A data frame: 10 × 8
## filename compressed_size uncompressed_size timestamp permissions
## <chr> <dbl> <dbl> <dttm> <octmode>
## 1 20250731-1… 0 0 2025-07-31 13:45:56 755
## 2 20250731-1… 0 0 2025-07-31 13:45:56 755
## 3 20250731-1… 1467 1462 2025-07-31 13:45:56 644
## 4 20250731-1… 3421 3416 2025-07-31 13:45:56 644
## 5 20250731-1… 287 282 2025-07-31 13:45:56 644
## 6 20250731-1… 27795 27790 2025-07-31 13:45:56 644
## 7 20250731-1… 0 0 2025-07-31 13:45:56 755
## 8 20250731-1… 542 888 2025-07-31 13:45:56 644
## 9 20250731-1… 214 358 2025-07-31 13:45:56 644
## 10 20250731-1… 176 221 2025-07-31 13:45:56 644
## # ℹ 3 more variables: crc32 <hexmode>, offset <dbl>, type <chr>
The subdirectory pack
contains the report working
directory, all code and dependencies, etc, while meta
contains additional information required to run the report. In
particular the incoming.csv
file in the pack
directory contains the dependency imported from other
.
Then copy this zip file somewhere else to run it (details vary based on your system, and moving the file is not necessary to run it, though it will be the most likely situation).
Once the files have been moved we can run it with:
workdir <- tempfile()
res <- orderly1::orderly_bundle_run(bundle$path, workdir)
## [ start ] 2025-07-31 13:45:57.794295
##
## > d <- read.csv("incoming.csv", stringsAsFactors = FALSE)
##
## > png("graph.png")
##
## > par(mar = c(15, 4, 0.5, 0.5))
##
## > barplot(setNames(d$number, d$name), las = 2)
##
## > dev.off()
## agg_png
## 2
##
## > info <- orderly1::orderly_run_info()
##
## > saveRDS(info, "info.rds")
## [ end ] 2025-07-31 13:45:57.809826
## [ elapsed ] Ran report in 0.01553035 secs
## [ artefact ] graph.png: 67b3e662440b3978ee78b9d4cc159884
## [ ... ] info.rds: aedcdf5f489ccb4b7bd3ffcf5fd08dcd
With the workdir
being a directory that you want the
report to be run in. This can be the same as the path the incoming zip
file is found, if you want, but this will make it harder to know what
has been run already or not.
This creates another zip file, but this time contains the results of running the report.
The result can be imported into order by using
orderly1::orderly_bundle_import
with the path to the zip
file:
orderly1::orderly_bundle_import(res$path, root = path)
## [ import ] use_dependency:20250731-134557-813b916d
The copy of use_dependency
is now in the archive and can
be used like any other orderly report
orderly1::orderly_list_archive(path)
## name id
## 1 other 20250731-134557-13e5b985
## 2 use_dependency 20250731-134557-813b916d
orderly1::orderly_graph("other", root = path)
## other [20250731-134557-13e5b985]
## └──use_dependency [20250731-134557-813b916d]
Limitations
We do not yet verify that the incoming bundle comes from a trusted source, nor that the completed bundle was run on a trusted system, nor that the bundle pack was not modified en route. We will add a signing and verifying step in future that will address these issues.
We do not support encryption of the bundle, but may do so in a future version.
Secrets will be copied in clear text if included.
We do not check that the package versions on the remote machine are suitable, though metadata is included to support this in future.
We do not support reading from databases using the
connection:
field while the report is running (reading data before is fine). In future we may relax this so that the remote report interacts with the database. Practically this means that bundled reports cannot use theconnection:
field, and all data will be packaged into the bundle, and so may be large.As discussed above in the overview section, orderly does not deal with the movement of bundles between machines, nor queuing of these bundles.