tursodatabase / libsql

libSQL is a fork of SQLite that is both Open Source, and Open Contributions.
https://turso.tech/libsql
MIT License
11.25k stars 286 forks source link

account reads and writes from ANN search #1606

Closed sivukhin closed 3 months ago

sivukhin commented 3 months ago

Context

Most reads and writes in the DiskANN algorithm performed with sqlite3_blob_* API which are invisible to the LibSQL "accounting" machinery as they operates on it's own instance of Vdbe structure.

This PR brings visibility into read/written rows in DiskANN implementation.

Changes