Queries the information about table statistics for an AnalyticDB for MySQL cluster.
Debugging
Authorization information
The following table shows the authorization information corresponding to the API. The authorization information can be used in the Action
policy element to grant a RAM user or RAM role the permissions to call this API operation. Description:
- Operation: the value that you can use in the Action element to specify the operation on a resource.
- Access level: the access level of each operation. The levels are read, write, and list.
- Resource type: the type of the resource on which you can authorize the RAM user or the RAM role to perform the operation. Take note of the following items:
- The required resource types are displayed in bold characters.
- If the permissions cannot be granted at the resource level,
All Resources
is used in the Resource type column of the operation.
- Condition Key: the condition key that is defined by the cloud service.
- Associated operation: other operations that the RAM user or the RAM role must have permissions to perform to complete the operation. To complete the operation, the RAM user or the RAM role must have the permissions to perform the associated operations.
Operation | Access level | Resource type | Condition key | Associated operation |
---|---|---|---|---|
adb:DescribeTableStatistics | get |
|
| none |
Request parameters
Parameter | Type | Required | Description | Example |
---|---|---|---|---|
DBClusterId | string | Yes | The cluster ID. Note
You can call the DescribeDBClusters operation to query a list of cluster IDs.
| am-**************** |
PageSize | integer | No | The number of entries per page. Valid values:
| 30 |
PageNumber | integer | No | The page number. Pages start from page 1. Default value: 1. | 1 |
Order | string | No | The order in which to sort the queried information. Specify this parameter as an ordered JSON array that consists of the
| [ { "Field":"TableName", "Type":"Asc" } ] |
RegionId | string | No | The region ID of the cluster. Note
You can call the DescribeRegions operation to query the most recent region list.
| cn-beijing |
Keyword | string | No | The keyword that is used to query information by table name. | you_table_name |
Response parameters
Examples
Sample success responses
JSON
format
{
"TotalCount": "1",
"PageSize": "30",
"RequestId": "4C4433FF-5D3A-4C3E-A19C-6D93B2******",
"PageNumber": "1",
"DBClusterId": "am-****************",
"Items": {
"TableStatisticRecords": [
{
"SchemaName": "test_schema",
"TableName": "test_table",
"RowCount": 3,
"DataSize": 15592,
"IndexSize": 3076,
"PrimaryKeyIndexSize": 16340,
"PartitionCount": 1,
"ColdDataSize": 0,
"SpaceRatio": 66.23,
"TotalSize": 1577,
"HotDataSize": 1048576,
"OtherSize": 1048576
}
]
}
}
Error codes
For a list of error codes, visit the Service error codes.
Change history
Change time | Summary of changes | Operation |
---|---|---|
2024-03-14 | The internal configuration of the API is changed, but the call is not affected | View Change Details |
2024-02-20 | The request parameters of the API has changed. The response structure of the API has changed | View Change Details |