Skip to content

Commit

Permalink
size reduction
Browse files Browse the repository at this point in the history
  • Loading branch information
iesahin committed Oct 24, 2021
1 parent 9fecae2 commit 2b49380
Showing 1 changed file with 3 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,33 +81,14 @@ $ dvc exp run --all-pipelines
### Running pipelines recursively

DVC supports pipelines defined in more than one `dvc.yaml` file. These can
reside in subfolders inside the workspace, and you may want to run all of them
at once. Example project:

```dvc
.
β”œβ”€β”€ dir
β”‚ β”œβ”€β”€ deeper-dir
β”‚ β”‚ └── dvc.yaml
β”‚ β”œβ”€β”€ dvc.lock
β”‚ └── dvc.yaml
β”œβ”€β”€ dvc.lock
└── dvc.yaml
```

To run the pipelines defined in `dir/dvc.yaml` as well as the ones in
`dir/deeper-dir/dvc.yaml` with a single command, you can target the `dir/`
directory with the `--recursive` (`-R`) option:
When your pipeline is defined in recursive subfolders, you can selectively run
them using the `--recursive` option.

```dvc
$ dvc exp run --recursive dir/
```

It will run all the pipelines under `dir/`.

You may also use `.` as target (e.g. `dvc exp run -R .`) to run all pipelines in
the entire project (recursively starting from the current directory).
It will run all the pipelines under `dir/`, and its subdirectories.

### Running stages interactively

Expand Down

0 comments on commit 2b49380

Please sign in to comment.