https://github.com/cwida/fastlanes

Next-Gen Big Data File Format

https://github.com/cwida/fastlanes

Science Score: 49.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
    Found 11 DOI reference(s) in README
  • Academic publication links
    Links to: acm.org
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (10.7%) to scientific vocabulary
Last synced: 6 months ago · JSON representation

Repository

Next-Gen Big Data File Format

Basic Info
  • Host: GitHub
  • Owner: cwida
  • License: mit
  • Language: C++
  • Default Branch: dev
  • Homepage: https://fastlanes.io/
  • Size: 92.1 MB
Statistics
  • Stars: 462
  • Watchers: 10
  • Forks: 24
  • Open Issues: 0
  • Releases: 0
Created about 3 years ago · Last pushed 7 months ago
Metadata Files
Readme Changelog License Codeowners

README.md

FastLanes Logo

License: MIT

Like Parquet, but with 40% better compression and 40× faster decoding.

FastLanes features:

  • Fully SIMD-friendly with zero explicit SIMD instructions
  • Zero dependencies:

    • no external libraries required

Documentation


Getting Started

Python

```python import pyfastlanes

Connect to FastLanes

conn = pyfastlanes.connect()

Convert a CSV directory to FastLanes format

conn.inlinefooter().readcsv("path/to/csvdir").tofls("data.fls")

Read back and write to CSV

reader = conn.readfls("data.fls") reader.tocsv("decoded.csv") ```

C++

Add FastLanes as a dependency via CMake:

```cmake include(FetchContent) FetchContentDeclare( fastlanes GITREPOSITORY https://github.com/cwida/FastLanes.git GITTAG dev ) FetchContentMakeAvailable(fastlanes)

addexecutable(example example.cpp) targetlink_libraries(example PRIVATE FastLanes) ```

Example usage:

```cpp

include "fastlanes.hpp"

int main() { fastlanes::Connection conn; conn.readcsv("data/csvdir").to_fls("data.fls");

auto reader = fastlanes::Connection().read_fls("data.fls");
reader->to_csv("decoded.csv");
return EXIT_SUCCESS;

} ```

Rust

Add FastLanes Rust bindings to your Cargo.toml:

cargo [dependencies] fls-rs = { path = "./rust" }

```rust use anyhow::Result; use fls_rs::connect;

fn main() -> Result<()> { let mut conn = connect(); conn.inlinefooter() .readcsv("data/csvdir") .tofls("data.fls");

conn.read_fls("data.fls")
    .to_csv("decoded.csv");
Ok(())

} ```

Coming Soon

  • CUDA support for FastLanes CUDA reader

Publications

  • Azim Afroozeh & Peter Boncz, “The FastLanes Compression Layout: Decoding > 100 Billion Integers per Second with Scalar Code,” PVLDB, 16(9): 2132–2144, May 2023

  • Azim Afroozeh, Lotte Felius & Peter Boncz, “Accelerating GPU Data Processing Using FastLanes Compression,” DaMoN ’24, Proceedings of the 20th International Workshop on Data Management on New Hardware, Santiago, Chile, June 2024

  • Azim Afroozeh, Leonardo Kuffó & Peter Boncz, “ALP: Adaptive Lossless Floating-Point Compression,” SIGMOD ’24, ACM SIGMOD, June 2024

  • Sven Hielke Hepkema, Azim Afroozeh, Charlotte Felius, Peter Boncz & Stefan Manegold, “G‑ALP: Rethinking Light‑weight Encodings for GPUs,” DaMoN ’25, July 2025


How to Cite

If you use FastLanes in your research or projects, please cite:

```bibtex @article{afroozeh2023fastlanes, author = {Afroozeh, Azim and Boncz, Peter}, title = {The FastLanes Compression Layout: Decoding > 100 Billion Integers per Second with Scalar Code}, journal = {Proceedings of the VLDB Endowment}, volume = {16}, number = {9}, pages = {2132--2144}, month = may, year = {2023}, publisher = {VLDB Endowment} }

@inproceedings{afroozeh2024gpu, author = {Afroozeh, Azim and Felius, Lotte and Boncz, Peter}, title = {Accelerating GPU Data Processing Using FastLanes Compression}, booktitle = {DaMoN ’24: Proceedings of the 20th International Workshop on Data Management on New Hardware}, pages = {1--11}, month = jun, year = {2024}, organization = {ACM}, doi = {10.1145/3662010.3663450} }

@inproceedings{afroozeh2024alp, author = {Afroozeh, Azim and Kuffó, Leonardo and Boncz, Peter}, title = {ALP: Adaptive Lossless Floating-Point Compression}, booktitle = {SIGMOD ’24: Proceedings of the 2024 ACM SIGMOD International Conference on Management of Data}, pages = {1--13}, month = jun, year = {2024}, organization = {ACM}, doi = {10.1145/3626717} }

@inproceedings{hepke2025galp, author = {Hepkema, Sven Hielke and Afroozeh, Azim and Felius, Charlotte and Boncz, Peter and Manegold, Stefan}, title = {G‑ALP: Rethinking Light‑weight Encodings for GPUs}, booktitle = {DaMoN ’25: Proceedings of the 21st International Workshop on Data Management on New Hardware}, pages = {11:1--11:10}, month = jul, year = {2025}, organization = {ACM}, url = {https://dl.acm.org/doi/pdf/10.1145/3736227.3736242} }

@article{afroozeh2025fastlanes, author = {Afroozeh, Azim and Boncz, Peter}, title = {The FastLanes File Format}, year = {2025}, issue_date = {July 2025}, publisher = {VLDB Endowment}, volume = {18}, number = {11}, issn = {2150-8097}, url = {https://doi.org/10.14778/3749646.3749718}, doi = {10.14778/3749646.3749718}, abstract = {This paper introduces a new open-source big data file format, called FastLanes. It is designed for modern data-parallel execution (SIMD or GPU), and evolves the features of previous data formats such as Parquet, which are the foundation of data lakes, and which increasingly are used in AI pipelines. It does so by avoiding generic compression methods (e.g. Snappy) in favor of lightweight encodings, that are fully data-parallel. To enhance compression ratio, it cascades encodings using a flexible expression encoding mechanism. This mechanism also enables multi-column compression (MCC), enhancing compression by exploiting correlations between columns, a long-time weakness of columnar storage. We contribute a 2-phase algorithm to find encodings expressions during compression.FastLanes also innovates in its API, providing flexible support for partial decompression, facilitating engines to execute queries on compressed data. FastLanes is designed for fine-grained access, at the level of small batches rather than rowgroups; in order to limit the decompression memory footprint to fit CPU and GPU caches.We contribute an open-source implementation of FastLanes in portable (auto-vectorizing) C++. Our evaluation on a corpus of real-world data shows that FastLanes improves compression ratio over Parquet, while strongly accelerating decompression, making it a win-win over the state-of-the-art.}, journal = {Proc. VLDB Endow.}, month = sep, pages = {4629–4643}, numpages = {15} }

```


License

This project is released under the MIT License.


Contributing

We welcome contributions to FastLanes!
Please see CONTRIBUTING.md for guidelines on how to get started.


Join Our Community

Come discuss FastLanes, share feedback, and help shape the future of data formats on Discord: Join Our Discord

Owner

  • Name: CWI Database Architectures Group
  • Login: cwida
  • Kind: organization
  • Location: Amsterdam, The Netherlands

GitHub Events

Total
  • Issues event: 7
  • Watch event: 202
  • Delete event: 2
  • Issue comment event: 5
  • Push event: 31
  • Pull request review event: 2
  • Pull request event: 66
  • Fork event: 12
  • Create event: 4
Last Year
  • Issues event: 7
  • Watch event: 202
  • Delete event: 2
  • Issue comment event: 5
  • Push event: 31
  • Pull request review event: 2
  • Pull request event: 66
  • Fork event: 12
  • Create event: 4

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 4
  • Total pull requests: 36
  • Average time to close issues: 2 months
  • Average time to close pull requests: about 2 hours
  • Total issue authors: 4
  • Total pull request authors: 2
  • Average comments per issue: 0.5
  • Average comments per pull request: 0.0
  • Merged pull requests: 29
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 4
  • Pull requests: 36
  • Average time to close issues: 2 months
  • Average time to close pull requests: about 2 hours
  • Issue authors: 4
  • Pull request authors: 2
  • Average comments per issue: 0.5
  • Average comments per pull request: 0.0
  • Merged pull requests: 29
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • dataders (1)
  • Hzc492 (1)
  • yuxin370 (1)
  • luohao (1)
  • gatesn (1)
Pull Request Authors
  • azimafroozeh (37)
  • sebastiaan-dev (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • cargo 3,968 total
  • Total dependent packages: 0
  • Total dependent repositories: 0
  • Total versions: 8
  • Total maintainers: 1
crates.io: fls-rs

FastLanes File Format

  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,968 Total
Rankings
Stargazers count: 10.6%
Forks count: 13.6%
Dependent repos count: 21.6%
Dependent packages count: 28.7%
Average: 33.9%
Downloads: 94.8%
Maintainers (1)
Last synced: 6 months ago