Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4504: Existence of the configuration option explained #1941

Merged
merged 13 commits into from
Nov 16, 2020
2 changes: 2 additions & 0 deletions content/docs/command-reference/push.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@ in the cache (compared to the default remote.) It can be used to see what files
- `-j <number>`, `--jobs <number>` - parallelism level for DVC to upload data to
remote storage. The default value is `4 * cpu_count()`. For SSH remotes, the
default is `4`. Using more jobs may improve the overall transfer speed.
Alternatively, a custom value could be set in a configuration file using
`jobs` option. See `dvc remote modify` for more information.
I159 marked this conversation as resolved.
Show resolved Hide resolved

- `-h`, `--help` - prints the usage/help message, and exit.

Expand Down
7 changes: 7 additions & 0 deletions content/docs/command-reference/remote/modify.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,13 @@ The following config options are available for all remote types:
$ dvc remote modify localremote url /home/user/dvcstore
```

- `jobs` - number of workers started. Accepts positive integers. The default
value is `4 * cpu_count()`. For SSH remotes, the default is `4`.
jorgeorpinel marked this conversation as resolved.
Show resolved Hide resolved

```dvc
$ dvc remote modify myremote jobs 8
```

- `verify` - upon downloading <abbr>cache</abbr> files (`dvc pull`, `dvc fetch`)
DVC will recalculate the file hashes upon download (e.g. `dvc pull`) to make
sure that these haven't been modified, or corrupted during download. It may
Expand Down