Skip to content

vor delete run

vor delete run

Delete runs

Synopsis

Delete runs in the current playpen.

This command allows you to delete one or more runs based on various filters. Both run metadata and data in output directories will be deleted. You will be shown a preview of the runs to be deleted and asked for confirmation before the deletion is performed. The deletion is performed concurrently for multiple runs.

Set the ACCESSIBLE environment variable to "true" to enable accessible mode.

vor delete run [flags]

Examples

# Delete a specific run by run name
vor delete run --name "My Run"

# Delete all failed runs
vor delete run --status Job_Finished_With_Errors

# Delete runs older than 1 day
vor delete run --before 24h

# Delete runs newer than 1 day
vor delete run --after 24h

# Delete all runs that are finished and not approved
vor delete run --finished --not-approved

# Delete all failed runs that were started in the last 24 hours
vor delete run --status Job_Finished_With_Errors,Code_Compile_Error --after 24h

Options

      --after duration     Show only runs that started after this duration ago (e.g. 1h30m)
      --approved           Show only approved runs (conflicts with --not-approved)
      --before duration    Show only runs that started before this duration ago (e.g. 24h)
      --finished           Show only completed runs (conflicts with --pending, --status)
  -h, --help               help for run
      --name string        Filter runs by name (exact match)
      --name-like string   Filter runs by name (substring match)
      --not-approved       Show only runs that are not approved (conflicts with --approved)
      --pending            Show only pending runs (conflicts with --finished, --status)
      --status strings     Filter runs by status ("Initialized"|"Compiling"|"Code_Compile_Error"|"Running"|"Job_Finished_With_Errors"|"Job_Finished_With_Warnings"|"Finished"|"Job_Canceled")

Options inherited from parent commands

      --play string   playpen path
      --renew-token   renew token (default true)

SEE ALSO

  • vor delete - Delete an object, i.e. playpen, node, process