查询tablet信息
查询tablet信息
Request
GET /tablets_json?limit={int}
Description
获取特定BE节点上指定数量的tablet的tablet id和schema hash信息
Query parameters
limit
返回的tablet数量,选填,默认1000个,可填all
返回全部tablet。
Request body
无
Response
```
{
msg: "OK",
code: 0,
data: {
host: "10.38.157.107",
tablets: [
{
tablet_id: 11119,
schema_hash: 714349777
},
...
{
tablet_id: 11063,
schema_hash: 714349777
}
]
},
count: 30
}
```
Examples
```
curl http://127.0.0.1:8040/api/tablets_json?limit=123
```