110 releases (9 breaking)

new 0.10.15 Apr 18, 2024
0.10.5 Mar 20, 2024
0.9.2 Dec 30, 2023
0.8.18 Nov 30, 2023
0.0.1-alpha0 Jul 28, 2022

#9 in Machine learning

Download history 168/week @ 2024-01-02 184/week @ 2024-01-09 256/week @ 2024-01-16 547/week @ 2024-01-23 629/week @ 2024-01-30 487/week @ 2024-02-06 677/week @ 2024-02-13 1295/week @ 2024-02-20 1492/week @ 2024-02-27 2451/week @ 2024-03-05 2593/week @ 2024-03-12 1017/week @ 2024-03-19 596/week @ 2024-03-26 1832/week @ 2024-04-02 895/week @ 2024-04-09 897/week @ 2024-04-16

4,312 downloads per month
Used in 4 crates (3 directly)

Apache-2.0

2.5MB
60K SLoC

Rust Implementation of Lance Data Format

Lance Logo

A new columnar data format for data science and machine learning

Installation

Install using cargo:

cargo install lance

Examples

Create dataset

Suppose batches is an Arrow Vec<RecordBatch> and schema is Arrow SchemaRef:

use lance::{dataset::WriteParams, Dataset};

let write_params = WriteParams::default();
let mut reader = RecordBatchIterator::new(
    batches.into_iter().map(Ok),
    schema
);
Dataset::write(reader, &uri, Some(write_params)).await.unwrap();

Read

let dataset = Dataset::open(path).await.unwrap();
let mut scanner = dataset.scan();
let batches: Vec<RecordBatch> = scanner
    .try_into_stream()
    .await
    .unwrap()
    .map(|b| b.unwrap())
    .collect::<Vec<RecordBatch>>()
    .await;

Take

let values: Result<RecordBatch> = dataset.take(&[200, 199, 39, 40, 100], &projection).await;

Vector index

Assume "embeddings" is a FixedSizeListArray

use ::lance::index::vector::VectorIndexParams;

let params = VectorIndexParams::default();
params.num_partitions = 256;
params.num_sub_vectors = 16;

// this will Err if list_size(embeddings) / num_sub_vectors does not meet simd alignment
dataset.create_index(&["embeddings"], IndexType::Vector, None, &params, true).await;

Motivation

Why do we need a new format for data science and machine learning?

1. Reproducibility is a must-have

Versioning and experimentation support should be built into the dataset instead of requiring multiple tools.
It should also be efficient and not require expensive copying everytime you want to create a new version.
We call this "Zero copy versioning" in Lance. It makes versioning data easy without increasing storage costs.

2. Cloud storage is now the default

Remote object storage is the default now for data science and machine learning and the performance characteristics of cloud are fundamentally different.
Lance format is optimized to be cloud native. Common operations like filter-then-take can be order of magnitude faster using Lance than Parquet, especially for ML data.

3. Vectors must be a first class citizen, not a separate thing

The majority of reasonable scale workflows should not require the added complexity and cost of a specialized database just to compute vector similarity. Lance integrates optimized vector indices into a columnar format so no additional infrastructure is required to get low latency top-K similarity search.

4. Open standards is a requirement

The DS/ML ecosystem is incredibly rich and data must be easily accessible across different languages, tools, and environments. Lance makes Apache Arrow integration its primary interface, which means conversions to/from is 2 lines of code, your code does not need to change after conversion, and nothing is locked-up to force you to pay for vendor compute. We need open-source not fauxpen-source.

Dependencies

~48–77MB
~1.5M SLoC