Hacker News new | ask | show | jobs
Show HN: Stratum - a pure JVM columnar SQL engine using the Java Vector API (datahike.io)
3 points by whilo 99 days ago
1 comments

Hi HN - I’m the author of Stratum.

Stratum is a columnar SQL engine built on the JVM exploring two ideas:

• SIMD execution using the Java Vector API

• copy-on-write branching for tables

It speaks the PostgreSQL wire protocol, so tools like psql, JDBC, and DBeaver work out of the box.

The engine is pure JVM (no JNI). In benchmarks on 10M rows it performs competitively with DuckDB on many analytical queries.

GitHub repo: https://github.com/replikativ/stratum

Benchmarks and methodology are described in the docs.

Happy to answer questions - feedback very welcome.