diff --git a/content/docs/api-reference/dvcfilesystem.md b/content/docs/api-reference/dvcfilesystem.md index 70ff6ada33..1cd586c3ff 100644 --- a/content/docs/api-reference/dvcfilesystem.md +++ b/content/docs/api-reference/dvcfilesystem.md @@ -11,7 +11,7 @@ DVCFileSystem provides a unified view of all the files/directories in your repository, be it Git-tracked or DVC-tracked, or untracked (in case of a local repository). It can reuse the files in DVC cache and can otherwise stream from -[supported remote storage](/doc/command-reference/remote/add#supported-storage-types). +[supported remote storage](/doc/user-guide/data-management/remote-storage#supported-storage-types). ```py >>> from dvc.api import DVCFileSystem diff --git a/content/docs/api-reference/get_url.md b/content/docs/api-reference/get_url.md index 267fafee94..c8b9484c5a 100644 --- a/content/docs/api-reference/get_url.md +++ b/content/docs/api-reference/get_url.md @@ -44,7 +44,8 @@ directory in the remote storage. 💡 Having the resource's URL, it should be possible to download it directly with an appropriate library, such as [`boto3`] or [`paramiko`]. -[storage-types]: /doc/command-reference/remote/add#supported-storage-types +[storage-types]: + /doc/user-guide/data-management/remote-storage#supported-storage-types [structure of cache directory]: /doc/user-guide/project-structure/internal-files#structure-of-the-cache-directory [`boto3`]: diff --git a/content/docs/api-reference/open.md b/content/docs/api-reference/open.md index 79d496a6ac..1d8235f732 100644 --- a/content/docs/api-reference/open.md +++ b/content/docs/api-reference/open.md @@ -40,8 +40,8 @@ file can be tracked by DVC (as an output) or by Git. (using the `with` keyword, as shown in the examples). This function makes a direct connection to the -[remote storage](/doc/command-reference/remote/add#supported-storage-types), so -the file contents can be streamed. Your code can process the data +[remote storage](/doc/user-guide/data-management/remote-storage#supported-storage-types), +so the file contents can be streamed. Your code can process the data [buffer](https://docs.python.org/3/c-api/buffer.html) as it's streamed, which optimizes memory usage. diff --git a/content/docs/command-reference/pull.md b/content/docs/command-reference/pull.md index 05dbb0726c..e20461c0a3 100644 --- a/content/docs/command-reference/pull.md +++ b/content/docs/command-reference/pull.md @@ -234,7 +234,7 @@ r1 ssh://user@example.com/path/to/dvc/remote/storage ``` > DVC supports several -> [remote types](/doc/command-reference/remote/add#supported-storage-types). +> [remote types](/doc/user-guide/data-management/remote-storage#supported-storage-types). To download DVC-tracked data from a specific DVC remote, use the `--remote` (`-r`) option of `dvc pull`: diff --git a/content/docs/command-reference/remote/modify.md b/content/docs/command-reference/remote/modify.md index d4895cba78..1b3dc29214 100644 --- a/content/docs/command-reference/remote/modify.md +++ b/content/docs/command-reference/remote/modify.md @@ -686,7 +686,7 @@ $ export OSS_ENDPOINT='endpoint' 💡 Using a HDFS cluster as remote storage is also supported via the WebHDFS API. Read more about by expanding the WebHDFS section in -[`dvc remote add`](/doc/command-reference/remote/add#supported-storage-types). +[`dvc remote add`](/doc/user-guide/data-management/remote-storage#supported-storage-types). > If any values given to the parameters below contain sensitive user info, add > them with the `--local` option, so they're written to a Git-ignored config @@ -720,7 +720,7 @@ Read more about by expanding the WebHDFS section in 💡 WebHDFS serves as an alternative for using the same remote storage supported by HDFS. Read more about by expanding the WebHDFS section in -[`dvc remote add`](/doc/command-reference/remote/add#supported-storage-types). +[`dvc remote add`](/doc/user-guide/data-management/remote-storage#supported-storage-types). > If any values given to the parameters below contain sensitive user info, add > them with the `--local` option, so they're written to a Git-ignored config diff --git a/content/docs/command-reference/version.md b/content/docs/command-reference/version.md index 6d4606f5e6..47ef112381 100644 --- a/content/docs/command-reference/version.md +++ b/content/docs/command-reference/version.md @@ -16,11 +16,11 @@ usage: dvc version [-h] [-q | -v] | ------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | [`DVC version`](#components-of-dvc-version) | Version of DVC, and name of the binary or package manager (`pip`, `conda`, etc.) used to install DVC (along with a Git commit hash in case of a development version) | | `Platform` | Version of Python in the environment where DVC is initialized, and information about the operating system | -| `Supports` | Types of [remote storage](/doc/command-reference/remote/add#supported-storage-types) supported by the current DVC setup (their required dependencies are installed) | +| `Supports` | Types of [remote storage](/doc/user-guide/data-management/remote-storage#supported-storage-types) supported by the current DVC setup (their required dependencies are installed) | | `Cache types` | [Types of links](/doc/user-guide/data-management/large-dataset-optimization#file-link-types-for-the-dvc-cache) supported (between workspace and cache) | | `Cache directory` | Filesystem type (e.g. ext4, FAT, etc.) and drive on which the cache directory is mounted | | `Caches` | Cache [location types](/doc/user-guide/data-management/managing-external-data) configured in the repo (e.g. local, SSH, S3, etc.) | -| `Remotes` | Remote [location types](/doc/command-reference/remote/add#supported-storage-types) configured in the repo (e.g. SSH, S3, Google Drive, etc.) | +| `Remotes` | Remote [location types](/doc/user-guide/data-management/remote-storage#supported-storage-types) configured in the repo (e.g. SSH, S3, Google Drive, etc.) | | `Workspace directory` | Filesystem type (e.g. ext4, FAT, etc.) and drive on which the workspace is mounted | | `Repo` | Shows whether we are in a DVC repo and/or Git repo |