polars-pylance
Lazy, streaming Lance ↔ Polars integration.
scan_lance() returns a real LazyFrame: the Polars optimizer pushes column
projections, filters and row limits down into Lance, and batches are pulled only
as the streaming engine consumes them. sink_lance() writes a query into Lance
batch by batch. Neither direction holds the dataset -- or a whole fragment -- in
memory.
import polars as pl
import polars_pylance as pll
lf = pll.scan_lance("s3://bucket/embeddings.lance")
pll.sink_lance(
lf.filter(pl.col("score") > 0.9).select("id", "text", "vector"),
"filtered.lance",
mode="overwrite",
)
The name
polars + pylance, composed in Python. There is no compiled extension here and
no lance crate linked in: the package is pure Python over the two libraries it
joins, which is why it installs as a single wheel, tracks new pylance releases
without a rebuild, and reaches Lance features as fast as pylance exposes them.
Comparison with polars-lance
Note that PyPI's polars-lance is an unrelated package by a different author
(extensive benchmarks and feature insights for comparison).
The two can coexist in one environment but follow different implementation designs.
Why this exists
Polars has no native Lance reader or writer
(pola-rs/polars#14452 has been
open since 2024). Lance datasets do implement the PyArrow dataset protocol, so
pl.scan_pyarrow_dataset works, but it cannot push down row limits, cannot pin a
dataset version, cannot reach vector or full-text search, and leaves Lance's
read-ahead defaults -- io_buffer_size alone defaults to 2 GiB -- untouched.
Reading
lf = pll.scan_lance(
"data.lance",
version=7, # or a tag; omit to follow the latest
options=pll.LanceScanOptions(), # readahead / buffer tuning
nearest={"column": "vector", "q": query, "k": 10}, # ANN search
with_row_id=True,
)
What gets pushed into Lance: the column projection, the row limit, and the
filter, translated into Lance's own SQL filter language so that scalar indices,
page statistics and late materialisation all apply. .head() stops the scan
early rather than reading to the end. scan_lance walks the Polars expression
itself and emits Lance SQL:
>>> pll.to_lance_filter(pl.col("cat").str.starts_with("b") & pl.col("id").is_in([1, 2]))
LanceFilter(sql="(starts_with(`cat`, 'b') AND (`id` IN (1, 2)))", exact=True)
A predicate that only partly translates is pushed as far as it goes and finished
in Polars (exact=False says so), so the answer never depends on how much of it
Lance understood. predicate_pushdown=False turns the whole thing off.
Sharded reads
scan_lance_fragments() returns one LazyFrame per fragment (or per shard) when
you want to fan a read out over threads, processes or workers yourself.
Writing
pll.sink_lance(lf, "out.lance", mode="append", max_rows_per_file=1_000_000)
pll.sink_lance(updates, "out.lance", mode="merge", on="id") # upsert
plan = pll.sink_lance(lf, "out.lance", lazy=True) # write on collect
Sharded writes
For distributed writes, each shard writes its own fragments and a single commit makes them one version:
shards = pll.scan_lance_fragments("in.lance")
pll.write_lance_fragments([s.filter(pl.col("ok")) for s in shards], "out.lance")
commit_lance_fragments() is that second half on its own -- publish fragments
someone else wrote. It is what the Polars Cloud path commits
with once the workers are done.
Memory behaviour
Peak RSS for polars-pylance across the size ladder in
bench/, on datasets from 1 GiB to 49.2 GiB, a 49×
increase in data:
Reads
| 1 GiB source | 49.2 GiB source | |
|---|---|---|
| Projection-only scan, payload column never read | 0.20 GiB | 0.25 GiB |
Sharded fragment scan (scan_lance_fragments) |
0.20 GiB | 0.27 GiB |
| Substring filter + payload aggregate | 0.22 GiB | 0.32 GiB |
| 50% filter + payload aggregate | 0.79 GiB | 1.24 GiB |
| Full scan + aggregate over the payload column | 0.46 GiB | 0.58 GiB |
Reads are flat: a full scan of 49 GiB costs 0.12 GiB more than a full scan of 1 GiB, because nothing accumulates. Projection pushdown is the biggest lever, and a pushed-down filter is the next one: not reading the 512-byte column for rows that will not survive is the difference between 0.32 and 1.24 GiB.
Writes
| 1 GiB source | 49.2 GiB source | |
|---|---|---|
sink_lance (scan → transform → write) |
0.99 GiB | 1.60 GiB |
write_lance_fragments (parallel, 16 shards) |
0.90 GiB | 7.40 GiB |
sink_lance grows slowly rather than with the result, which is what lets it
write a 49 GiB source in under 2 GiB of RAM where an eager writer needs 51 GiB.
The fragment-parallel path trades memory for wall time: 16 shards write at once,
so its peak tracks the shard count.
Development
uv run pytest
uv run pytest -m "not cloud" # what CI runs
uv run mypy # strict, over src, tests and bench
uv run basedpyright
uvx ruff check . && uvx ruff format --check .
# benchmarking:
uv run --group bench bench/plot.py bench/results-m8id4xl.jsonl --out bench/plots
Polars Cloud
Not installable today. polars-cloud 0.10 pins
polars==1.43.2, below this package'spolars>=1.44.0floor, so there is nocloudextra and the two cannot be resolved together. Everything in this section is written and kept working against the 0.10 API; it becomes usable when polars-cloud ships a release tracking 1.44.
Reads are designed to ship: a scan serializes to a few kB and carries a URI,
never an open dataset handle. Workers need pylance and polars-pylance
installed, via ComputeContext(requirements=...) --
polars_pylance.cloud.requirements_txt() renders the pinned lines, since Polars
Cloud rejects a context whose polars version differs from the client's.
Writing from a remote query
polars-cloud 0.10 added sink_batches(), which hands each result batch to a
Python callable. That callable is cloudpickled into the serialized query
plan, so it runs on the workers -- Lance no longer has to be a sink format
Polars Cloud knows about, and the write is genuinely distributed rather than
streamed back through the client.
from polars_pylance.cloud import requirements_txt, sink_lance_remote
ctx = pc.ComputeContext(cpus=8, memory=32, requirements=requirements_txt().encode())
lf = pll.scan_lance("s3://bucket/in.lance").filter(pl.col("score") > 0.9)
sink_lance_remote(
lf.remote(ctx).distributed(),
"s3://bucket/out.lance",
mode="overwrite",
chunk_size=100_000, # the remote counterpart of max_rows_per_file
)
The shape is Lance's write/commit split. Each worker writes data files only and commits nothing, so no worker can publish a partial dataset; it then stages the resulting fragment metadata as JSON next to the dataset, because a callback shipped to a worker has no return path. When the query finishes, the client lists the staging prefix and makes every fragment one version with a single commit.
polars-cloud documents that the callback "might be called multiple times from
different workers", and appending a fragment is not idempotent -- so each staging
object is named after a deterministic digest of its batch, and a replayed batch
overwrites its own metadata instead of adding a second copy. tests/test_remote.py
delivers every batch twice and asserts the row count is unchanged. Pass
fragment_key= if your query has a natural key, such as a partition column;
the default digest would collapse two distinct batches that are byte-identical.
Replays do leave their earlier data files unreferenced -- reclaim them with
dataset.cleanup_old_versions(..., delete_unverified=True).
Drive the query yourself with stage_lance_sink() when you want to pick a
planner or inspect the query handle:
staged = pll.cloud.stage_lance_sink("s3://bucket/out.lance", lf, mode="overwrite")
query = lf.remote(ctx).distributed(planner="miso").sink_batches(staged.callback)
query.await_result()
staged.commit()
Reading
The scan survives prepare_cloud_plan, on its own and under pl.concat() of
scan_lance_fragments() shards. Since 0.9 distributes unions of Python scans, the sharded form is the
sanctioned way to fan a read across workers rather than a workaround, and 0.10's
pl.collect_all(lazyframes, lazy=True).remote(ctx).distributed().execute()
submits N shards as one distributed query instead of N remote ones. Note that
collect_all(lazy=True) requires every LazyFrame to end in a sink.
Still untested without a workspace: how the planner executes those nodes. Serializing is necessary, not sufficient.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file polars_pylance-0.1.3.tar.gz.
File metadata
- Download URL: polars_pylance-0.1.3.tar.gz
- Upload date:
- Size: 49.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2b8a6000b59f66685b5d5593e6119f629b49b91d8a1481d1537769be02177082
|
|
| MD5 |
9f7d16c0ffb332f293a5cb27a74d5c67
|
|
| BLAKE2b-256 |
9a0af629da6da9e42fb3586a99bd78ef44881efe3a768a5ffc438b3aa5f19ec4
|
Provenance
The following attestation bundles were made for polars_pylance-0.1.3.tar.gz:
Publisher:
release.yml on jonasdedden/polars-pylance
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polars_pylance-0.1.3.tar.gz -
Subject digest:
2b8a6000b59f66685b5d5593e6119f629b49b91d8a1481d1537769be02177082 - Sigstore transparency entry: 2626072131
- Sigstore integration time:
-
Permalink:
jonasdedden/polars-pylance@5fd598f98d216315c3f7477e742931d3a35480d3 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/jonasdedden
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5fd598f98d216315c3f7477e742931d3a35480d3 -
Trigger Event:
release
-
Statement type:
File details
Details for the file polars_pylance-0.1.3-py3-none-any.whl.
File metadata
- Download URL: polars_pylance-0.1.3-py3-none-any.whl
- Upload date:
- Size: 36.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d5b0c4137b0041f580fe05c9e0c169049f56f055eb0cecfac8dba5529ddb854
|
|
| MD5 |
c30f9677cece16bb86081be56caf8127
|
|
| BLAKE2b-256 |
51582aac7192cd758ca4951406fa9578db2b5d97dc01791ff1c6c6850a5d381c
|
Provenance
The following attestation bundles were made for polars_pylance-0.1.3-py3-none-any.whl:
Publisher:
release.yml on jonasdedden/polars-pylance
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
polars_pylance-0.1.3-py3-none-any.whl -
Subject digest:
3d5b0c4137b0041f580fe05c9e0c169049f56f055eb0cecfac8dba5529ddb854 - Sigstore transparency entry: 2626072142
- Sigstore integration time:
-
Permalink:
jonasdedden/polars-pylance@5fd598f98d216315c3f7477e742931d3a35480d3 -
Branch / Tag:
refs/tags/v0.1.3 - Owner: https://github.com/jonasdedden
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@5fd598f98d216315c3f7477e742931d3a35480d3 -
Trigger Event:
release
-
Statement type: