All Products
Search
Document Center

AnalyticDB:DescribeOversizeNonPartitionTableInfos

Last Updated:Nov 10, 2025

Queries the information about oversized non-partitioned tables in an AnalyticDB for MySQL cluster.

Debugging

You can run this interface directly in OpenAPI Explorer, saving you the trouble of calculating signatures. After running successfully, OpenAPI Explorer can automatically generate SDK code samples.

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:
    • For mandatory resource types, indicate with a prefix of * .
    • 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.
OperationAccess levelResource typeCondition keyAssociated operation
adb:DescribeOversizeNonPartitionTableInfosget
*DBClusterLakeVersion
acs:adb:{#regionId}:{#accountId}:dbcluster/{#DBClusterId}
    none
none

Request parameters

ParameterTypeRequiredDescriptionExample
DBClusterIdstringYes

The cluster ID.

amv-bp11q28kvl688****
RegionIdstringYes

The region ID.

Note You can call the DescribeRegions operation to query the most recent region list.
cn-hangzhou
StartTimestringYes

The beginning of the time range to query. Specify the time in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC.

Note
2024-05-11T05:44Z
EndTimestringYes

The end of the time range to query. Specify the time in the ISO 8601 standard in the yyyy-MM-ddTHH:mmZ format. The time must be in UTC.

Note The end time must be later than the start time. The specified time range must be less than seven days.
2024-05-11T05:44Z
PageSizeintegerNo

The number of entries per page. Valid values:

  • 30
  • 50
  • 100

Default value: 30.

30
PageNumberintegerNo

The page number. Pages start from page 1. Default value: 1.

1
LangstringNo

The language of file titles and error messages. Valid values:

  • zh (default): simplified Chinese.
  • en: English
  • ja: Japanese.
  • zh-tw: traditional Chinese.
zh
OrderstringNo

The order by which to sort query results. Specify the parameter value in the JSON format.

Example:

[

    {

        "Field":"Name",

        "Type":"Asc"

    }

]

Field specifies the field by which to sort the query results. Set the value to Name. Type specifies the sorting order. Valid values: Desc and Asc.

Field and Type are case-insensitive.

[{"Field":"SchemaName","Type":"Asc"}]

Response parameters

ParameterTypeDescriptionExample
object

The response parameter.

TotalCountstring

The total number of entries returned.

1
PageNumberinteger

The page number.

1
PageSizeinteger

The number of entries per page. Valid values:

  • 30 (default)
  • 50
  • 100
30
RequestIdstring

The request ID.

1AD222E9-E606-4A42-BF6D-8A4442913CEF
DBClusterIdstring

The cluster ID.

am-bp16t5ci7r74s****
Tablesarray<object>

The queried oversized non-partitioned tables.

OversizeNonPartitionTableInfoobject

The queried oversized non-partitioned table.

SchemaNamestring

The name of the database.

adb_demo
TableNamestring

The name of the table.

test
RowCountlong

The number of rows in the table.

1222
IndexSizelong

The data size of regular indexes. Unit: bytes.

111
DataSizelong

The data size of the table. Unit: bytes.

2921132457984
LocalDataSizelong

The size of hot data. Unit: bytes.

1223
PrimaryKeySizelong

The data size of the primary key index. Unit: bytes.

123
RemoteDataSizelong

The size of cold data. Unit: bytes.

122
SpaceRatiodouble

The percentage of the table size. Unit: %.

Note Formula: Table storage percentage = Total data size of a table/Total data size of the cluster × 100%.
0.3
DetectionItemsarray<object>

The queried detection items and detection results.

DetectionItemsArrayobject

The queried detection item and detection result.

Namestring

The name of the detection item.

Oversized non-partitioned tables
Messagestring

The information about the detection result.

Multiple oversized non-partitioned tables are detected.
Statusstring

The severity level of the detection result.

NORMAL WARNING CRITICAL

Examples

Sample success responses

JSONformat

{
  "TotalCount": 1,
  "PageNumber": 1,
  "PageSize": 30,
  "RequestId": "1AD222E9-E606-4A42-BF6D-8A4442913CEF",
  "DBClusterId": "am-bp16t5ci7r74s****",
  "Tables": [
    {
      "SchemaName": "adb_demo",
      "TableName": "test",
      "RowCount": 1222,
      "IndexSize": 111,
      "DataSize": 2921132457984,
      "LocalDataSize": 1223,
      "PrimaryKeySize": 123,
      "RemoteDataSize": 122,
      "SpaceRatio": 0.3
    }
  ],
  "DetectionItems": [
    {
      "Name": "Oversized non-partitioned tables",
      "Message": "Multiple oversized non-partitioned tables are detected.",
      "Status": "NORMAL\nWARNING\nCRITICAL"
    }
  ]
}

Error codes

HTTP status codeError codeError messageDescription
404InvalidDBCluster.NotFoundThe DBClusterId provided does not exist in our records.The specified DBClusterId parameter does not exist. Make sure that the DBClusterId value is valid.

For a list of error codes, visit the Service error codes.