SelectDB Enterprise
管控指南
Open API
BE HTTP
查询 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

```json
{
    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

```shell
curl http://127.0.0.1:8040/api/tablets_json?limit=123

```
© 2025 北京飞轮数据科技有限公司 京ICP备2022004029号 | Apache、Apache Doris 以及相关开源项目名称均为 Apache 基金会商标