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

     1  ## pachctl extract
     2  
     3  Extract Pachyderm state to stdout or an object store bucket.
     4  
     5  ### Synopsis
     6  
     7  Extract Pachyderm state to stdout or an object store bucket.
     8  
     9  ```
    10  pachctl extract [flags]
    11  ```
    12  
    13  ### Examples
    14  
    15  ```
    16  
    17  # Extract into a local file:
    18  $ pachctl extract > backup
    19  
    20  # Extract to s3:
    21  $ pachctl extract -u s3://bucket/backup
    22  ```
    23  
    24  ### Options
    25  
    26  ```
    27    -h, --help         help for extract
    28        --no-objects   don't extract from object storage, only extract data from etcd
    29    -u, --url string   An object storage url (i.e. s3://...) to extract to.
    30  ```
    31  
    32  ### Options inherited from parent commands
    33  
    34  ```
    35        --no-color   Turn off colors.
    36    -v, --verbose    Output verbose logs
    37  ```
    38