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

     1  ## pachctl flush job
     2  
     3  Wait for all jobs caused by the specified commits to finish and return them.
     4  
     5  ### Synopsis
     6  
     7  Wait for all jobs caused by the specified commits to finish and return them.
     8  
     9  ```
    10  pachctl flush job <repo>@<branch-or-commit> ... [flags]
    11  ```
    12  
    13  ### Examples
    14  
    15  ```
    16  
    17  # Return jobs caused by foo@XXX and bar@YYY.
    18  $ pachctl flush job foo@XXX bar@YYY
    19  
    20  # Return jobs caused by foo@XXX leading to pipelines bar and baz.
    21  $ pachctl flush job foo@XXX -p bar -p baz
    22  ```
    23  
    24  ### Options
    25  
    26  ```
    27        --full-timestamps     Return absolute timestamps (as opposed to the default, relative timestamps).
    28    -h, --help                help for job
    29    -o, --output string       Output format when --raw is set: "json" or "yaml" (default "json")
    30    -p, --pipeline []string   Wait only for jobs leading to a specific set of pipelines (default [])
    31        --raw                 Disable pretty printing; serialize data structures to an encoding such as json or yaml
    32  ```
    33  
    34  ### Options inherited from parent commands
    35  
    36  ```
    37        --no-color   Turn off colors.
    38    -v, --verbose    Output verbose logs
    39  ```
    40