Here we provide help for some of the problems that DVC user might stumble upon.
Users may encounter errors when running dvc pull and dvc fetch, like
WARNING: Cache 'xxxx' not found. or
ERROR: failed to pull data from the cloud. The most common cause is changes
pushed to Git without the corresponding data being uploaded to the
DVC remote. Make sure to dvc push from the
original project, and try again.
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
on Windows. Otherwise, please try using a lower JOBS value.
Make sure that you have your AWS credentials setup either through
usual AWS configuration
or by setting access_key_id and secret_access_key with dvc remote modify.
Make sure you are online and able to access your
AWS S3 endpoint, or
endpointurl if explicitly set with dvc remote modify.
Make sure your bucket
exists
in the correct region and/or endpointurl (see dvc remote modify).
Unable to detect supported link types, as the
cache directory doesn't exist. It is
usually created automatically by DVC commands that need it, but you can create
it manually (e.g. mkdir .dvc/cache) to enable this check.
You may encounter an error message saying Unable to acquire lock if you have
another DVC process running in the project. If that is not the case, it usually
means that DVC was terminated abruptly and manually removing the lock file in
.dvc/tmp/lock should resolve the issue.
If the issue still persists then it may be the case that you are running DVC on
some network filesystem like NFS, Lustre, etc. If so, the solution is to enable
core.hardlink_lock which can be done by running following command:
$ dvc config core.hardlink_lock trueDVC only supports symlinked files as
valid targets for dvc add. If the target path is a directory symlink, or if
the target path contains any intermediate directory symlinks, dvc add will
fail.
You may encounter this error if DVC cannot find a valid file link type to use when linking data files from cache into your workspace. To resolve the issue, you may need to reconfigure DVC to use alternative link types which are supported on your machine.
After reconfiguring cache types, you can re-link data files in your workspace using:
$ dvc checkout --relink