Create a parade pipeline (alias for flow)
pipeline.RdCreate a parade pipeline (alias for flow)
Arguments
- grid
A data frame or tibble containing parameter combinations
- seed_col
Optional column name for reproducible random seeds
- error
Error handling policy: "propagate", "keep", "omit", or "stop"
- retries
Flow-level retry attempts per stage.
- retry_backoff
Retry backoff strategy.
- retry_base
Retry base delay in seconds.
- retry_on
Optional retry classifier.
- cancel
Cancellation propagation mode for
error = "propagate".- resources
Optional flow-level resource defaults.
- cpus
Optional flow-level default CPUs per task.
- memory
Optional flow-level default memory.
- time
Optional flow-level default walltime.
Examples
grid <- data.frame(a = 1:2)
pl <- pipeline(grid)