Request

GET /tablets_json?limit={int}

Description

获取特定 BE 节点上指定数量的 tablet 的 tablet id 和 schema hash 信息

Query parameters

  • limit 返回的 tablet 数量,选填,默认 1000 个,可填all返回全部 tablet。

Request body

Response

  1. ```json
  2. {
  3. msg: "OK",
  4. code: 0,
  5. data: {
  6. host: "10.38.157.107",
  7. tablets: [
  8. {
  9. tablet_id: 11119,
  10. schema_hash: 714349777
  11. },
  12. ...
  13. {
  14. tablet_id: 11063,
  15. schema_hash: 714349777
  16. }
  17. ]
  18. },
  19. count: 30
  20. }
  21. ```

Examples

  1. ```shell
  2. curl http://127.0.0.1:8040/api/tablets_json?limit=123
  3. ```