You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/src/config.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -499,4 +499,19 @@ Lance Spark maintains index and metadata caches to minimize redundant I/O. Cache
499
499
|`LANCE_INDEX_CACHE_SIZE`| 6GB | Index cache size in bytes. |
500
500
|`LANCE_METADATA_CACHE_SIZE`| 1GB | Metadata cache size in bytes. |
501
501
502
-
For details on how caching works and tuning recommendations, see [Performance Tuning - Caching](performance.md#caching).
502
+
For details on how caching works and tuning recommendations, see [Performance Tuning - Caching](performance.md#caching).
503
+
504
+
## Blob v2 Reads
505
+
506
+
Lance datasets that contain a blob v2 column expose that column to Spark as the native 5-field descriptor struct: `struct<kind:short, position:long, size:long, blob_id:long, blob_uri:string>`. Querying the descriptor never fetches the blob bytes, so `SELECT payload.size` and `SELECT payload.blob_uri` are cheap.
0 commit comments