Fetch logs from tasks in a bundle.
Arguments
- bundle
Either a
hipercow_bundle
object, or the name of a bundle.- outer
Logical, indicating if we should request the "outer" logs; these are logs from the underlying HPC software before it hands off to hipercow.
- follow
Logical, indicating if we should follow any retried tasks.
- root
A hipercow root, or path to it. If
NULL
we search up your directory tree.
Examples
cleanup <- hipercow_example_helper(with_logging = TRUE)
#> ℹ This example uses a special helper
bundle <- task_create_bulk_expr(sqrt(x), data.frame(x = 1:2))
#> ✔ Submitted 2 tasks using 'example'
#> ✔ Created bundle 'indistinct_indianspinyloach' with 2 tasks
hipercow_bundle_wait(bundle)
#> [1] TRUE
hipercow_bundle_log_value(bundle)
#> [[1]]
#> [1] ""
#> [2] "── hipercow 1.1.2 running at '/home/runner/work/_temp/hv-20250328-1c634c7f95ea' "
#> [3] "ℹ library paths:"
#> [4] "• /home/runner/work/_temp/Library"
#> [5] "• /opt/R/4.4.3/lib/R/site-library"
#> [6] "• /opt/R/4.4.3/lib/R/library"
#> [7] "ℹ id: fd63b2511ff39ff3bff33ff2ff8ff68b"
#> [8] "ℹ starting at: 2025-03-28 15:17:08.133446"
#> [9] "ℹ Task type: expression"
#> [10] "• Expression: sqrt(x)"
#> [11] "• Locals: x"
#> [12] "• Environment: default"
#> [13] " R_GC_MEM_GROW: 3"
#> [14] "───────────────────────────────────────────────────────────────── task logs ↓ ──"
#> [15] ""
#> [16] "───────────────────────────────────────────────────────────────── task logs ↑ ──"
#> [17] "✔ status: success"
#> [18] "ℹ finishing at: 2025-03-28 15:17:08.133446 (elapsed: 0.2212 secs)"
#>
#> [[2]]
#> [1] ""
#> [2] "── hipercow 1.1.2 running at '/home/runner/work/_temp/hv-20250328-1c634c7f95ea' "
#> [3] "ℹ library paths:"
#> [4] "• /home/runner/work/_temp/Library"
#> [5] "• /opt/R/4.4.3/lib/R/site-library"
#> [6] "• /opt/R/4.4.3/lib/R/library"
#> [7] "ℹ id: fb20fc27349c5800ed9fff55a381418e"
#> [8] "ℹ starting at: 2025-03-28 15:17:08.553359"
#> [9] "ℹ Task type: expression"
#> [10] "• Expression: sqrt(x)"
#> [11] "• Locals: x"
#> [12] "• Environment: default"
#> [13] " R_GC_MEM_GROW: 3"
#> [14] "───────────────────────────────────────────────────────────────── task logs ↓ ──"
#> [15] ""
#> [16] "───────────────────────────────────────────────────────────────── task logs ↑ ──"
#> [17] "✔ status: success"
#> [18] "ℹ finishing at: 2025-03-28 15:17:08.553359 (elapsed: 0.2033 secs)"
#>
cleanup()
#> ℹ Cleaning up example