lance-format/lance
在 GitHub 查看[DuckDB] Expose vector search capability via duckdb extension
Open
#640 创建于 2023年2月25日
A-indexduckdbgood first issuehelp wantedrust
仓库指标
- Star
- (6,582 star)
- PR 合并指标
- (平均合并 6天 1小时) (30 天内合并 219 个 PR)
描述
Problem Statement
Lance rust dataset has the capability of querying over vector space, via Scannner::nearest(..), we should expose this to DuckDB via its extension mechanism.
For example, a potential implementation could be a duckdb table function lance_nearest
SELECT id, col
FROM lance_nearest("table", "vector_column", "query", top_k)
WHERE city = 'SF' and day = "02-03-2023"