-
Notifications
You must be signed in to change notification settings - Fork 406
Add troubleshooting guide #875
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
Merged
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
037fdf6
pull: add 'too many open files error' solution
pared 9ccc2cd
push: add 'too many open files error' solution
pared 7aa1b77
push/pull: roll back common problems, add troubleshooting guide
pared a473a5b
Update static/docs/user-guide/troubleshooting.md
pared 775ea17
troubleshooting: add sidebar.json entry
pared d2293b5
user-guide: add HTTP redirect from err.dvc.org/{header} to troublesho…
jorgeorpinel 7d4887e
user-guide: move troubleshooting guide to correct location
jorgeorpinel ad1b786
user-guide: force header id in troubleshooting guide
jorgeorpinel c2dedde
server: rename err to error
pared 6630b46
server: use HTTP 303 for man. redirect
jorgeorpinel d5340e6
user-guide: hardcode short id/href in troubleshooting header
jorgeorpinel 5199aa0
user-guide: remove long hardcoded HTML code, leave simple h2 with id …
jorgeorpinel 3472e5b
user-guide: remove "guide" from Troubleshooting nav item
jorgeorpinel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,18 @@ | ||
| # Troubleshooting | ||
|
|
||
| In this section we provide help for some of the problems that DVC user might | ||
| stumble upon. | ||
|
|
||
| <!-- Hardcoded id for error.dvc.org/many-files -> #many-files redirect --> | ||
| <h2 id="many-files">Too many open files error</h2> | ||
|
|
||
| A known problem some users run into with the `dvc pull`, `dvc fetch` and | ||
| `dvc push` commands 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, | ||
| with `ulimit` on UNIX-like system (for example `ulimit -n 1024`), 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. |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.