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

ref: missing adds --jobs #3199

Merged
merged 9 commits into from
Jan 28, 2022
4 changes: 4 additions & 0 deletions content/docs/command-reference/add.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@ not.
[remote storage](/doc/command-reference/remote) to transfer external target to
(can only be used with `--to-remote`).

- `-j <number>`, `--jobs <number>` - parallelism level for DVC to transfer data
when using `--to-remote`. The default value is `4 \* cpu_count()`. For SSH
remotes, the default is `4`. Using more jobs may speed up the operation.
Comment on lines +172 to +174
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if --jobs also has this same effect in import-url --to-remote. Currently it only refers to downloading the target data. @dberenbaum or @efiop, do you know? Thanks

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

--jobs affects the uploading when using dvc import-url --to-remote so the description should be updated. This also affects dvc update

This comment was marked as resolved.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Moved this Q to #3233


- `--desc <text>` - user description of the data (optional). This doesn't affect
any DVC operations.

Expand Down