# Reading large datasets without stalling

When I/O is your bottleneck, more workers will not help. Here is what does.

Source: https://university.eugo.io/videos/reading-large-datasets

---

- Level: Advanced
- Duration: 6m
- Topics: data-io, performance
- Status: not yet recorded — the transcript below covers the same material

## What this video covers

If each worker spends most of its time waiting on object storage, adding workers adds waiting, not throughput. Read in parallel within each task, prefer columnar formats so you fetch only the fields you use, and size partitions so a single request moves a useful amount of data. Measure the ratio of time spent reading to time spent computing before deciding a workload is compute-bound.
