gc
Remove unused files and directories from cache or remote storage.
Synopsis
usage: dvc gc [-h] [-q | -v]
[-w] [--rev <commit>] [-n <num>] [-a] [-T] [-A]
[--date <YYYY-MM-DD>] [--all-experiments]
[-p [<path> [<path> ...]]]
[--not-in-remote]
[-c] [-r <name>] [-j <number>] [-f] [--dry]Description
This command can delete (garbage collect) data files or directories that exist
in the cache but are no longer needed. With --cloud, it also
removes data in remote storage.
To avoid accidentally deleting data, dvc gc doesn't do anything unless one or
a combination of scope options are provided (--workspace, --all-branches,
--all-tags, --all-commits, --all-experiments). Use these to indicate which
cached files are still needed. See the Options section for more
details.
The data kept is determined by reading the DVC files in the set of commits of the given scope.
Note that
dvc gctries to fetch missing.dirfiles from remote storage to local cache in order to determine which files should exist inside cached directories. These files may be missing if the cache was previously garbage collected, in a newly cloned copy of the repo, etc.
Unless the --cloud option is used, any files collected from the cache can be
restored using dvc fetch, as long as they have been previously uploaded with
dvc push.
Removing data in remote storage
If the --cloud (-c) flag is used, this command deletes unused data from the
dvc remote default in addition to deleting it from the local DVC cache. To
specify a DVC remote to delete from, use the --remote (-r) option.
Cloud deletion is irreversible unless there is another DVC remote or a manual backup with the same data.
Cleaning shared cache (or remote)
If a cache is shared among different projects that track some of the same
files, using dvc gc in one project will break those overlapping data links in
the other projects.
To prevent this, use the --projects (-p) option. It takes one or more paths
to the DVC project(s) whose data should be preserved. Make sure that all the
commits and branches that reference files you want to keep have been pulled in
those other projects first.
For example, if we have several projects with some overlapping files and we'd
like to collect all the data that's only used in one of them (e.g. if we no
longer need that project), we would first clone all the other projects, fetch
all their branches, and pass their paths to the dvc gc -p command from the
project we want to clear.
Options
-
-w,--workspace- keep only files and directories referenced in the workspace. This option is enabled automatically with the other scope options (below). -
--rev <commit>- keep cached data referenced in the specified<commit>, as well as in the workspace (implying-w). -
-n <num>,--num <num>- keep cached data referenced in the last--numcommits starting from a--rev <commit>(required), as well as in the workspace (implying-w). -
-a,--all-branches- keep cached data referenced in all Git branches, as well as in the workspace (implying-w). Useful if branches are used to track different experiments. Note that this can be combined with-Tbelow, for example using the-aTflags. -
-T,--all-tags- keep cached data referenced in all Git tags, as well as in the workspace (implying-w). Useful if tags are used to mark certain versions of an experiment or project. Note that this can be combined with-aabove, for example using the-aTflags. -
-A,--all-commits- keep cached data referenced in all* Git commits, as well as in the workspace (implying-w). This preserves the cache for all data used in the entire commit history of the project.A use case for this option is to safely delete all temporary data
dvc exp runand/ordvc reprocache when used without committing changes (see the-Oor-M, and--no-commitoptions in those commands). In that scenario, data that is never referenced from the workspace or from any Git commit can still be stored in the project's cache).* Not including DVC experiments
-
--date <YYYY-MM-DD>- Keep experiments from any commits on of after a certain date. Argument<YYYY-MM-DD>expects a date in the ISO 8601 format. -
--all-experimentskeep cached objects referenced in all DVC experiments, as well as in the workspace (implying-w). This preserves the project's experimental data. -
-p <paths>,--projects <paths>- if a single remote or a single cache is shared among different projects, this option can be used to specify a list of them (each project is a path) to keep data that is currently referenced from them. -
--not-in-remote- keep cached objects that are not in the remote. This will remove the objects from the local cache that have been pushed and are present in the remote.For objects using the
remotefield, the check will be against that remote.For objects not using the
remotefield, the check will be against the default remote unless a specific one is given with-r. -
-c,--cloud- remove files in remote storage in addition to local cache.This option is dangerous. Read the description carefully.
For objects using the
remotefield, the check will be against that remote. Any other files not using theremotefield may be deleted from that remote.For objects not using the
remotefield, the check will be against the default remote unless a specific one is given with-r. Any other files using theremotefield may be deleted from that remote. -
-r <name>,--remote <name>- name of thedvc remoteto collect unused objects from if-coption is specified (seedvc remote list). -
-j <number>,--jobs <number>- parallelism level for DVC to access data from remote storage. This only applies when the--cloudoption is used, or a--remoteis given. The default value is4 * cpu_count(). Note that the default value can be set using thejobsconfig option withdvc remote modify. Using more jobs may speed up the operation.For now only some phases of garbage collection are parallel.
-
-f,--force- force garbage collection. Skip confirmation prompt. -
--dry- Only print what would get removed without actually removing. -
-h,--help- prints the usage/help message, and exit. -
-q,--quiet- do not write anything to standard output. Exit with 0 if no problems arise, otherwise 1. -
-v,--verbose- displays detailed tracing information.
Examples
Basic example of cleaning up the cache:
$ du -sh .dvc/cache/
7.4G .dvc/cache/When you run dvc gc --workspace, DVC removes all objects from cache that are
not referenced in the workspace (by collecting hash values from the
DVC files):
$ dvc gc --workspace
'.dvc/cache/files/md5/27e30965256ed4d3e71c2bf0c4caad2e' was removed
'.dvc/cache/files/md5/2e006be822767e8ba5d73ebad49ef082' was removed
'.dvc/cache/files/md5/2f412200dc53fb97dcac0353b609d199' was removed
'.dvc/cache/files/md5/541025db4da02fcab715ca2c2c8f4c19' was removed
'.dvc/cache/files/md5/62f8c2ba93cfe5a6501136078f0336f9' was removed
'.dvc/cache/files/md5/7c4521365288d69a03fa22ad3d399f32' was removed
'.dvc/cache/files/md5/9ff7365a8256766be8c363fac47fc0d4' was removed
'.dvc/cache/files/md5/a86ca87250ed8e54a9e2e8d6d34c252e' was removed
'.dvc/cache/files/md5/f64d65d4ccef9ff9d37ea4cf70b18700' was removedLet's check the size now:
$ du -sh .dvc/cache/
3.1G .dvc/cache/