github.com/pachyderm/pachyderm@v1.13.4/doc/docs/1.11.x/reference/pachctl/pachctl_run_pipeline.md (about)

     1  ## pachctl run pipeline
     2  
     3  Run an existing Pachyderm pipeline on the specified commits-branch pairs.
     4  
     5  ### Synopsis
     6  
     7  Run a Pachyderm pipeline on the datums from specific commit-branch pairs. If you only specify a branch, Pachyderm uses the HEAD commit to complete the pair. Note: Pipelines run automatically when data is committed to them. This command is for the case where you want to run the pipeline on a specific set of data, or if you want to rerun the pipeline. The datums that were successfully processed in previous runs will not be processed unless you specify the --reprocess flag.
     8  
     9  ```
    10  pachctl run pipeline <pipeline> [<repo>@<branch>[=<commit>]...] [flags]
    11  ```
    12  
    13  ### Examples
    14  
    15  ```
    16  
    17  		# Rerun the latest job for the "filter" pipeline
    18  		$ pachctl run pipeline filter
    19  
    20  		# Process the pipeline "filter" on the data from commit-branch pairs "repo1@A=a23e4" and "repo2@B=bf363"
    21  		$ pachctl run pipeline filter repo1@A=a23e4 repo2@B=bf363
    22  
    23  		# Run the pipeline "filter" on the data from commit "167af5" on the "staging" branch on repo "repo1"
    24  		$ pachctl run pipeline filter repo1@staging=167af5
    25  ```
    26  
    27  ### Options
    28  
    29  ```
    30    -h, --help         help for pipeline
    31        --job string   rerun the given job
    32  ```
    33  
    34  ### Options inherited from parent commands
    35  
    36  ```
    37        --no-color   Turn off colors.
    38    -v, --verbose    Output verbose logs
    39  ```
    40