We have a big mono repo where all the projects are eventually merged. We plan to put the dvc files related to a model in the same directory, and we will have many such directories. In that case, doing dvc pull will start pulling all the files cached in remote storage (potentially terabytes of data), right? If a user does dvc pull <target> she will only load the cached file needed by this target, which is what we really want the user to do.
It would be nice to have a way to prevent the dvc pull without a target, like a config option pull.disable_global.
We have a big mono repo where all the projects are eventually merged. We plan to put the dvc files related to a model in the same directory, and we will have many such directories. In that case, doing
dvc pullwill start pulling all the files cached in remote storage (potentially terabytes of data), right? If a user doesdvc pull <target>she will only load the cached file needed by this target, which is what we really want the user to do.It would be nice to have a way to prevent the
dvc pullwithout a target, like a config optionpull.disable_global.