获取HBase数据表分析中HBase-RegionServers列表数据
最近更新时间: 2026-09-17 00:05:46
1. 接口描述
接口请求域名: tbdsnew.api3.fincloud.tencent.cn。
获取HBase数据表分析中HBase Region列表操作列点击RegionServers之后的查询列表数据
默认接口请求频率限制:20次/秒。
接口更新时间:2025-09-16 22:34:56。
接口既验签名又鉴权。
2. 输入参数
以下请求参数列表仅列出了接口请求参数和部分公共参数,完整公共参数列表见公共请求参数。
| 参数名称 | 必选 | 允许NULL | 类型 | 描述 |
|---|---|---|---|---|
| Action | 是 | 否 | String | 公共参数,本接口取值:DescribeHBaseRegionServerList |
| Version | 是 | 否 | String | 公共参数,本接口取值:2019-01-03 |
| Region | 是 | 否 | String | 公共参数,地域信息可通过DescribeRegions接口查看产品支持的地域列表 |
| InstanceId | 是 | 否 | String | 字符串实例id 示例值: tbds-1vzudj86 |
| Table | 是 | 否 | String | HBase表名 示例值: default_impala_hive_hbase_tb |
| Offset | 是 | 否 | Int64 | 页码,默认值为0,表示第一页 示例值: 0 |
| Limit | 是 | 否 | Int64 | 每页返回数,默认值为10,最大值为50 示例值: 10 |
| OrderField | 否 | 否 | String | Region列表的页面的排序字段,默认为空: RegionServer/GetTimeTp99/ScanTimeTp99/PutTimeTp99/IncrementTimeTp99/AppendTimeTp99/DeleteTimeTp99 示例值: 1 |
| OrderType | 否 | 否 | String | 排序类型:asc/desc,默认desc 示例值: 1 |
3. 输出参数
| 参数名称 | 类型 | 描述 |
|---|---|---|
| TotalCount | Int64 | 总数 示例值: 1 |
| Tables | Array of RegionServerTableRow | regionServer列表 注意:此字段可能返回 null,表示取不到有效值。 示例值:查看 |
| SchemaList | Array of TableSchemaItem | 表Schema信息 注意:此字段可能返回 null,表示取不到有效值。 示例值:查看 |
| RequestId | String | 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。 |
4. 错误码
以下仅列出了接口业务逻辑相关的错误码,其他错误码详见公共错误码。
| 错误码 | 描述 |
|---|---|
| InternalError.OpenTSDBHttpReturnCodeNotOK | 请求OpenTSDB失败。 |
5. 示例
示例1 获取HBase RegionServer列表
输入示例
POST / HTTP/1.1
Host: tbdsnew.api3.{conf.main_domain}
Content-Type: application/json
X-TC-Action: DescribeHBaseRegionServerList
<公共请求参数>
{
"InstanceId": "tbds-1vzudj86",
"Offset": 0,
"Limit": 10,
"Table": "default_impala_hive_hbase_tb"
}
输出示例
{
"Response": {
"RequestId": "26592688-0219-4788-a1a6-dabbf4fafb76",
"SchemaList": [
{
"Name": "RegionServer",
"Sortable": true,
"WithFilter": false,
"Candidates": null,
"Clickable": true,
"Title": "RegionServer"
},
{
"Name": "GetTimeTp99",
"Sortable": true,
"WithFilter": false,
"Candidates": null,
"Clickable": false,
"Title": "GetTimeTp99"
},
{
"Name": "ScanTimeTp99",
"Sortable": true,
"WithFilter": false,
"Candidates": null,
"Clickable": false,
"Title": "ScanTimeTp99"
},
{
"Name": "PutTimeTp99",
"Sortable": true,
"WithFilter": false,
"Candidates": null,
"Clickable": false,
"Title": "PutTimeTp99"
},
{
"Name": "IncrementTimeTp99",
"Sortable": true,
"WithFilter": false,
"Candidates": null,
"Clickable": false,
"Title": "IncrementTimeTp99"
},
{
"Name": "AppendTimeTp99",
"Sortable": true,
"WithFilter": false,
"Candidates": null,
"Clickable": false,
"Title": "AppendTimeTp99"
},
{
"Name": "DeleteTimeTp99",
"Sortable": true,
"WithFilter": false,
"Candidates": null,
"Clickable": false,
"Title": "DeleteTimeTp99"
}
],
"Tables": [],
"TotalCount": 0
}
}