Diagnose pipeline failures
wtf.RdThe primary entry point for understanding what went wrong in a parade pipeline run. Provides classified errors, actionable suggestions, and log locations.
Arguments
- x
A
parade_deferredobject, collected results data.frame,parade_script_job, orparade_jobset- verbose
Detail level: 0 (summary only), 1 (errors), 2 (full report with suggestions and logs)
- max_errors
Maximum number of individual errors to display
- log_lines
Number of log tail lines to show per failed chunk
- ...
Additional arguments passed to methods
Examples
# \donttest{
grid <- data.frame(x = 1:4, group = rep(c("A", "B"), 2))
fl <- flow(grid) |>
stage("calc", function(x) x^2, schema = returns(result = dbl())) |>
distribute(dist_local(by = "group"))
d <- submit(fl)
deferred_await(d, timeout = 60)
wtf(d)
#>
#> ================================================================================
#> parade failure report
#> Run: 5bf3bb4f Backend: local Submitted: 2026-03-30 16:39:45.738685
#> Stages: calc
#> Elapsed: 0:00:03 Chunks: 2 total, 2 ok, 0 failed
#>
#> No failures detected.
#> ================================================================================
#>
# }