mirror of
https://github.com/lancedb/lancedb.git
synced 2026-07-11 15:00:39 +00:00
# Elastic Streaming Dataloader ## Motivation Training large models on LanceDB tables today requires loading the entire dataset into memory or writing bespoke batching logic. This PR introduces `StreamingDataset`, a PyTorch `IterableDataset` that streams directly from a LanceDB table with two hard guarantees that are difficult to achieve together: **elastic determinism** and **resumability**. ## Goals ### Elastic determinism The dataset partitions the table into a fixed number of *splits* (controlled by `num_splits`, `shuffle_seed`, and `epoch`). Samples are yielded by round-robining over splits one sample per split per cycle. Because the split structure is fixed, the set of samples that makes up each global training step is identical regardless of `world_size` or `num_workers`. You can scale your cluster up or down between runs and the model sees the same data in the same order — no re-sharding, no gradient variance from topology changes. ### Resumability `state_dict()` / `load_state_dict()` capture how many samples each split has consumed. Because all splits are the same size and the round-robin design keeps them in lockstep, the state reduces to a single scalar (`samples_consumed_per_split`) that is topology-independent. A checkpoint saved with 8 GPUs can resume correctly on 4 GPUs or 16 GPUs without any adjustment. ### PyTorch `IterableDataset` / streaming `StreamingDataset` implements the standard PyTorch `IterableDataset` interface, so it drops into any existing `DataLoader` pipeline without modification. Data is fetched lazily from Lance in chunks — only the rows needed for the current batch are ever in memory. Compared to the map dataset this takes more work from pytorch and puts it into the dataset itself (e.g. shuffling, filtering, etc.). We do this because we cannot achieve things like elastic determinism or prefiltering otherwise. ### Multi-worker support DataLoader workers are automatically assigned contiguous sub-blocks of splits (the rank's splits are divided evenly across workers). Each worker is independent: no shared state, no inter-process coordination. The only constraint is that `num_splits` must be divisible by `world_size * num_workers`. That being said, multi-worker is highly discouraged as it relies on multiprocessing which is inefficient. Still, we want to support it. ### Filters as prefilters Filters are applied at *permutation-build time* via `PermutationBuilder.filter()`, not re-evaluated on every fetch. The filtered row IDs are stored in the permutation table so that subsequent reads see only the matching rows. This allows us to avoid loading rows that don't match the filter (which is the default pytorch behavior) ### Prefetching Two parameters control the I/O pipeline: - `read_batch_size` (default 64) — number of rows fetched per `take_offsets` call. Larger values amortise per-request overhead, which is critical on object storage where a single round-trip can cost ~100 ms. - `prefetch_batches` (default 4) — number of batches prefetched in parallel per split via a `ThreadPoolExecutor`. While the model processes the current batch, the next several batches are already in flight, hiding storage latency behind compute. If set correctly then you can get good performance even with num_workers=0 (unless you are bottlenecked on transform). ### Transform parallelism The underlying `Permutation` API supports a `with_transform()` callback for decoding, augmentation, and format conversion. Unfortunately, this is not parallelized. Pytorch typically parallelizes this with num_workers which is multiprocessing which is highly inefficient. For simple transforms we should be able to utilize multithreading and Rust based UDFs. For complex python UDFs we could have a dedicated multiprocessing pipeline for just the transform. Or we could just utilize multithreading. In both cases we would exclude the I/O stage from the multiprocessing because that ends up being very memory hungry and inefficient. --------- Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
136 lines
4.4 KiB
Python
136 lines
4.4 KiB
Python
#!/usr/bin/env python3
|
||
# SPDX-License-Identifier: Apache-2.0
|
||
# SPDX-FileCopyrightText: Copyright The LanceDB Authors
|
||
|
||
"""Benchmark for StreamingDataset throughput.
|
||
|
||
Sweeps read_batch_size from 1 to 16384 to show how amortising the per-request
|
||
overhead scales. Each row at each chunk size is timed via the real
|
||
StreamingDataset so the numbers reflect production code.
|
||
|
||
Run with:
|
||
cd python
|
||
uv run --extra tests benchmarks/bench_streaming_dataloader.py
|
||
|
||
Optional env vars:
|
||
BENCH_NUM_ROWS — total rows in the table (default 49152 = 24 × 2048)
|
||
BENCH_NUM_SPLITS — number of splits (default 24)
|
||
BENCH_STEPS — round-robin cycles to time per chunk size (default 100)
|
||
BENCH_ROW_BYTES — approximate bytes per row padded with a binary column
|
||
(default 4096, mimics a small embedding/image patch)
|
||
"""
|
||
|
||
import os
|
||
import time
|
||
import tempfile
|
||
|
||
import pyarrow as pa
|
||
import lancedb
|
||
|
||
from lancedb.streaming import StreamingDataset
|
||
|
||
# ---------------------------------------------------------------------------
|
||
# Configuration
|
||
# ---------------------------------------------------------------------------
|
||
|
||
NUM_SPLITS = int(os.environ.get("BENCH_NUM_SPLITS", 24))
|
||
# Default: 2048 rows per split so every chunk size up to 16Ki has ≥1 full
|
||
# chunk (except 16Ki itself which gets a single full-split fetch — still valid).
|
||
NUM_ROWS = int(os.environ.get("BENCH_NUM_ROWS", NUM_SPLITS * 2048))
|
||
STEPS = int(os.environ.get("BENCH_STEPS", 100))
|
||
ROW_BYTES = int(os.environ.get("BENCH_ROW_BYTES", 4096))
|
||
|
||
assert NUM_ROWS % NUM_SPLITS == 0, "NUM_ROWS must be divisible by NUM_SPLITS"
|
||
|
||
CHUNK_SIZES = [1, 4, 16, 64, 256, 1024, 4096, 16384]
|
||
|
||
|
||
# ---------------------------------------------------------------------------
|
||
# Table helpers
|
||
# ---------------------------------------------------------------------------
|
||
|
||
|
||
def make_table(db_path: str) -> lancedb.table.Table:
|
||
db = lancedb.connect(db_path)
|
||
payload = b"x" * ROW_BYTES
|
||
data = pa.table(
|
||
{
|
||
"id": pa.array(range(NUM_ROWS), type=pa.int32()),
|
||
"payload": pa.array([payload] * NUM_ROWS, type=pa.large_binary()),
|
||
}
|
||
)
|
||
return db.create_table("bench", data, mode="overwrite")
|
||
|
||
|
||
# ---------------------------------------------------------------------------
|
||
# Timing
|
||
# ---------------------------------------------------------------------------
|
||
|
||
|
||
def bench_chunk(table, chunk_size: int, steps: int) -> tuple[int, float]:
|
||
"""Return (rows_drained, elapsed_seconds) for one timed run."""
|
||
total_rows = steps * NUM_SPLITS
|
||
ds = StreamingDataset(
|
||
table, num_splits=NUM_SPLITS, shuffle_seed=42, read_batch_size=chunk_size
|
||
)
|
||
count = 0
|
||
t0 = time.perf_counter()
|
||
for _ in ds:
|
||
count += 1
|
||
if count >= total_rows:
|
||
break
|
||
return count, time.perf_counter() - t0
|
||
|
||
|
||
# ---------------------------------------------------------------------------
|
||
# Main
|
||
# ---------------------------------------------------------------------------
|
||
|
||
|
||
def main() -> None:
|
||
rows_per_split = NUM_ROWS // NUM_SPLITS
|
||
print("Benchmark config:")
|
||
print(
|
||
f" NUM_ROWS={NUM_ROWS} NUM_SPLITS={NUM_SPLITS} "
|
||
f"rows/split={rows_per_split} STEPS={STEPS} ROW_BYTES={ROW_BYTES}"
|
||
)
|
||
print(f" ~{NUM_ROWS * ROW_BYTES / 1024 / 1024:.1f} MB total table size")
|
||
print()
|
||
|
||
with tempfile.TemporaryDirectory() as tmp:
|
||
print("Creating table...", flush=True)
|
||
table = make_table(tmp)
|
||
|
||
cols = (
|
||
f"{'chunk':>6} {'rows':>6} {'elapsed':>8} {'rows/s':>10} {'ms/step':>9}"
|
||
)
|
||
print(f"\n{cols}")
|
||
print("-" * 52)
|
||
|
||
for chunk in CHUNK_SIZES:
|
||
# Warm-up pass (one step's worth of rows)
|
||
warmup_ds = StreamingDataset(
|
||
table, num_splits=NUM_SPLITS, shuffle_seed=42, read_batch_size=chunk
|
||
)
|
||
warmup_count = 0
|
||
for _ in warmup_ds:
|
||
warmup_count += 1
|
||
if warmup_count >= NUM_SPLITS:
|
||
break
|
||
|
||
drained, elapsed = bench_chunk(table, chunk, STEPS)
|
||
rows_per_sec = drained / elapsed if elapsed > 0 else float("inf")
|
||
ms_per_step = elapsed / STEPS * 1000
|
||
|
||
print(
|
||
f"{chunk:>6} {drained:>6} {elapsed:>7.3f}s "
|
||
f"{rows_per_sec:>10.0f} {ms_per_step:>8.1f}ms"
|
||
)
|
||
|
||
print()
|
||
print("Done.")
|
||
|
||
|
||
if __name__ == "__main__":
|
||
main()
|