-
Notifications
You must be signed in to change notification settings - Fork 394
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
push/pull: roll back common problems, add troubleshooting guide
Showing
3 changed files
with
17 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Troubleshooting | ||
|
||
In this section we cover some of the known issues that DVC user might stumbe | ||
upon. | ||
|
||
## Too many open files error | ||
|
||
A known problem some users run into with this command is | ||
`[Errno 24] Too many open files` (most common for S3 remotes on MacOS). The more | ||
`--jobs` specified, the more file descriptors need to be open on the host file | ||
system for each download thread, and the limit may be reached, causing this | ||
error. | ||
|
||
To solve this, it's often possible to increase the open file descriptors limit, | ||
for example with `ulimit -n` on UNIX-like system, or | ||
[increasing Handles limit](https://blogs.technet.microsoft.com/markrussinovich/2009/09/29/pushing-the-limits-of-windows-handles/) | ||
on Windows. Otherwise, please try using a lower `JOBS` value. |