mirror of
https://github.com/lancedb/lancedb.git
synced 2026-09-01 19:18:38 +00:00
77a93fee76
Some issues: - file_size_bytes is optional in the manifest, so if it's not there (old writer I guess) it'll under-report the table size. - it changes results a little bit from the old way by including per-file footers and metadata (probably not a big difference at real scale) --------- Co-authored-by: Will Jones <willjones127@gmail.com>
51 lines
625 B
Markdown
51 lines
625 B
Markdown
[**@lancedb/lancedb**](../README.md) • **Docs**
|
|
|
|
***
|
|
|
|
[@lancedb/lancedb](../globals.md) / TableStatistics
|
|
|
|
# Interface: TableStatistics
|
|
|
|
## Properties
|
|
|
|
### fragmentStats
|
|
|
|
```ts
|
|
fragmentStats: FragmentStatistics;
|
|
```
|
|
|
|
Statistics on table fragments
|
|
|
|
***
|
|
|
|
### numIndices
|
|
|
|
```ts
|
|
numIndices: number;
|
|
```
|
|
|
|
The number of indices in the table
|
|
|
|
***
|
|
|
|
### numRows
|
|
|
|
```ts
|
|
numRows: number;
|
|
```
|
|
|
|
The number of rows in the table
|
|
|
|
***
|
|
|
|
### totalBytes
|
|
|
|
```ts
|
|
totalBytes: number;
|
|
```
|
|
|
|
The total size, in bytes, of the table's data files, index files, and
|
|
overlay files
|
|
|
|
Read from the manifest, so this excludes deletion files and manifests.
|