diff --git a/docs/reference/mount.md b/docs/reference/mount.md index 78f0cd57735..07e3360e88d 100644 --- a/docs/reference/mount.md +++ b/docs/reference/mount.md @@ -112,6 +112,22 @@ Flags --presign: Use presign for downloading. ``` +### Partial Reads + +{: .d-inline-block } +experimental +{: .label .label-red } + +When reading large files, Everest can fetch from lakeFS only the parts actually accessed. +This can be useful for streaming workloads or for applications handling file formats such as Parquet, m4a, zip, tar that do not need to read the entire file. + +To enable partial reads, pass the `--partial-reads` flag to the `mount` (or `mount-server`) command: + +```bash +everest mount --partial-reads "lakefs://image-repo/main/datasets/pets/" "./pets" +``` + + ## Examples **Note**