Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/hub/storage-buckets-integrations.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,17 @@ df.to_parquet("hf://buckets/username/my-bucket/output.parquet")

## Dask

Dask reads and writes lazily, one partition per file, so you can process datasets larger than memory straight from a bucket:

```python
import dask.dataframe as dd

df = dd.read_parquet("hf://buckets/username/my-bucket/data.parquet")
df = dd.read_parquet("hf://buckets/username/my-bucket/data/")
df.to_parquet("hf://buckets/username/my-bucket/output/")
```

See [Dask on the Hub](./datasets-dask) for more.

## Daft

Daft supports `hf://buckets/` paths natively, with [Xet-accelerated reads](https://docs.daft.ai/en/stable/connectors/huggingface/) enabled by default:
Expand Down
Loading