lance

Modern columnar data format for ML and LLMs implemented in Rust. Convert from parquet in 2 lines of code for 100x faster random access, vector index, and data versioning. Compatible with Pandas, DuckDB, Polars, Pyarrow, with more integrations coming..

APACHE-2.0 License

Downloads
814.7K
Stars
3.8K

Bot releases are hidden (Show)

lance - v0.12.1

Published by wjones127 5 months ago

What's Changed

Bug Fixes 🐛

Full Changelog: https://github.com/lancedb/lance/compare/v0.12.0...v0.12.1

lance - v0.12.0

Published by wjones127 5 months ago

What's Changed

Breaking Changes 🛠

New Features 🎉

Bug Fixes 🐛

Other Changes

Full Changelog: https://github.com/lancedb/lance/compare/v0.11.1...v0.12.0

lance - v0.12.0-beta.1

Published by wjones127 5 months ago

What's Changed

Breaking Changes 🛠

New Features 🎉

Bug Fixes 🐛

Other Changes

Full Changelog: https://github.com/lancedb/lance/compare/v0.11.1...v0.12.0-beta.1

lance - v0.11.1

Published by wjones127 5 months ago

What's Changed

New Features 🎉

Bug Fixes 🐛

Performance Improvements 🚀

Other Changes

New Contributors

Full Changelog: https://github.com/lancedb/lance/compare/v0.11.0...v0.11.1

lance - v0.11.0

Published by wjones127 5 months ago

What's Changed

Breaking Changes 🛠

New Features 🎉

Bug Fixes 🐛

Documentation 📚

Performance Improvements 🚀

Other Changes

New Contributors

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.18...v0.11.0

lance - v0.10.18

Published by wjones127 5 months ago

What's Changed

New Features 🎉

Bug Fixes 🐛

Documentation 📚

Performance Improvements 🚀

Other Changes

New Contributors

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.17...v0.10.18

lance - v0.10.18-beta.1

Published by wjones127 6 months ago

What's Changed

New Features 🎉

Bug Fixes 🐛

Performance Improvements 🚀

Other Changes

New Contributors

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.17...v0.10.18-beta.1

lance - v0.10.17 Batch size bug fix, document spilling workaround

Published by westonpace 6 months ago

What's Changed

New Features 🎉

Bug Fixes 🐛

Documentation 📚

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.16...v0.10.17

lance - v0.10.16

Published by wjones127 6 months ago

Bug fixes

New Features

Performance Improvements

Other changes

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.15...v0.10.16

lance - v0.10.15: fix for LanceSchema pickling and empty directories

Published by wjones127 6 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.14...v0.10.15

lance - v0.10.14: Fixes for schema evolution

Published by wjones127 6 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.13...v0.10.14

lance - v0.10.13

Published by wjones127 6 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.12...v0.10.13

lance - v0.10.12 allow spill pool to be bypassed

Published by westonpace 6 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.11...v0.10.12

lance - v0.10.11: Ray data sink, fix for field ids

Published by wjones127 6 months ago

New features

Bug fixes

Other changes

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.10...v0.10.11

lance - v0.10.10: Easier S3 config

Published by wjones127 6 months ago

Features

Bug fixes

Other changes

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.9...v0.10.10

lance - v0.10.9 small robustness fix in cloud storage

Published by westonpace 7 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.8...v0.10.9

lance - v0.10.8 bug fixes, support filter with count rows

Published by eddyxu 7 months ago

What's Changed

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.7...v0.10.8

lance - v0.10.7: major bugfix for drop_columns, storage_options in Python

Published by wjones127 7 months ago

Bug fixes

❗ There was an bug with drop_columns(). If you've called this on your dataset, you should check if your dataset was affected by running dataset.validate(). If this raises an error, you can call dataset.delete("false") to force a repair operation on your dataset. Afterward it will work as expected.

New Features

🚀 You can now configure object storage connection in the kwargs of lance.dataset() and lance.write_dataset() with storage_options. For example:

import lance
ds = lance.dataset(
    "s3://bucket/path",
    storage_options={
        "region": "us-east-1",
        "access_key_id": "my-access-key",
        "secret_access_key": "my-secret-key",
        "session_token": "my-session-token",
    }
)

Read more in https://lancedb.github.io/lance/read_and_write.html#object-store-configuration

Other Changes

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.6...v0.10.7

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.5...v0.10.6

lance - v0.10.5 fix panic when reading datasets

Published by westonpace 7 months ago

Fixes a potential panic when reading a fragment that had multiple data files.

What's Changed

New Contributors

Full Changelog: https://github.com/lancedb/lance/compare/v0.10.4...v0.10.5