GetTableStats
Description
description: |
Get statistics for table `id`, including row counts, data sizes, and column statistics.
Request Schema
GetTableStatsRequest:
type: object
properties:
id:
type: array
items:
type: string
Response Schema
GetTableStatsResponse:
type: object
required:
- num_rows
- size_bytes
properties:
num_rows:
type: integer
format: int64
minimum: 0
description: Total number of rows in the table
size_bytes:
type: integer
format: int64
minimum: 0
description: Total size of the table in bytes
num_fragments:
type: integer
format: int64
minimum: 0
description: Number of data fragments