3 releases (breaking)

Uses new Rust 2024

0.4.0 Jan 26, 2026
0.3.0 Nov 7, 2025
0.2.0 Oct 29, 2025

#3 in #index-lake

MIT license

405KB
10K SLoC

IndexLake

License Crates.io Docs

IndexLake is an experimental table format with extensible index and inline table support.

  • Extensible Index System: Pluggable index types (BM25, B-Tree, HNSW, R*-tree)
  • Inline Tables: Store small datasets directly within the catalog
  • ACID Transaction: Support transaction through sql catalog
  • Flexible Catalog: PostgreSQL and SQLite catalog support
  • Flexible Storage: Local filesystem and S3-compatible storage backends
  • DataFusion Integration: Native Apache DataFusion support for SQL query workloads

Project Structure

IndexLake
├── Core Library (indexlake)        # Core table format and APIs
├── Catalogs
│   ├── PostgreSQL                  # Postgres catalog
│   └── SQLite                      # SQLite catalog
├── Indexes
│   ├── BM25                        # Full-text search index
│   ├── B-Tree                      # Traditional B-Tree index
│   ├── HNSW                        # Hierarchical navigable small world graph
│   └── R*-tree                     # Spatial index for multidimensional data
├── Storages
│   ├── FS                          # Local filesystem storage
│   └── S3                          # S3-compatible object storage
└── Integrations
    └── DataFusion                  # Apache DataFusion SQL engine integration

Dependencies

~38MB
~824K SLoC