Table
Index
Metadata
Get table index statistics
Get statistics for a specific index on a table. Returns information about the index type, distance type (for vector indices), and row counts.
post/v1/table/{id}/index/{index_name}/stats
Path parameters
idstring required
string identifier of an object in a namespace, following the Lance Namespace spec. When the value is equal to the delimiter, it represents the root namespace. For example, v1/namespace/$/list performs a ListNamespace on the root namespace.
index_namestring required
Name of the index to get stats for
Query parameters
delimiterstring
An optional delimiter of the string identifier, following the Lance Namespace spec. When not specified, the $ delimiter must be used.
Request body
Example request
{
"identity": {
"api_key": "api_key",
"auth_token": "auth_token"
},
"context": {
"key": "context"
},
"id": [
"id",
"id"
],
"version": 0,
"branch": "branch",
"index_name": "index_name"
}Response
Index statistics
Example response
{
"num_indices": 0,
"distance_type": "distance_type",
"num_unindexed_rows": 0,
"context": {
"key": "context"
},
"num_indexed_rows": 0,
"index_type": "index_type"
}