Remix.run Logo
nextaccountic 11 hours ago

That's neat, but.. is it just for cartographic data?

I want something like a db with indexes

jtbaker 6 hours ago | parent [-]

Look into using duckdb with remote http/s3 parquet files. The parquet files are organized as columnar vectors, grouped into chunks of rows. Each row group stores metadata about the set it contains that can be used to prune out data that doesn’t need to be scanned by the query engine. https://duckdb.org/docs/stable/guides/performance/indexing

LanceDB has a similar mechanism for operating on remote vector embeddings/text search.

It’s a fun time to be a dev in this space!