diff --git a/docs/admin-manual/system-tables/information_schema/backend_tablets.md b/docs/admin-manual/system-tables/information_schema/backend_tablets.md new file mode 100644 index 0000000000000..c44612cae845c --- /dev/null +++ b/docs/admin-manual/system-tables/information_schema/backend_tablets.md @@ -0,0 +1,58 @@ +--- +{ + "title": "backend_tablets", + "language": "en" +} +--- + + + +## Overview + +View the information of talbet on Backends.(added by doris 3.0.7) + +## Database + + +`information_schema` + + +## Table Information + +| Column Name | Type | Description | +| ------------------ | ------------ | -------------------------------- | +| BE_ID | bigint | The ID of the Backend | +| TABLET_ID | bigint | The ID of the Tablet | +| REPLICA_ID | bigint | The ID of the replica | +| PARTITION_ID | bigint | The ID of the partition | +| TABLET_PATH | varchar(256) | The Path of the tablet | +| TABLET_LOCAL_SIZE | bigint | The Size of the tablet on local | +| TABLET_REMOTE_SIZE | bigint | The Size of the tablet on remote | +| VERSION_COUNT | bigint | The number of version | +| SEGMENT_COUNT | bigint | The size of segment | +| NUM_COLUMNS | bigint | The number of columns | +| ROW_SIZE | bigint | The size of row | +| COMPACTION_SCORE | int | Compaction Score | +| COMPRESS_KIND | varchar(256) | The Kind of Compression | +| IS_USED | bool | Is the tablet datadir opened | +| IS_ALTER_FAILED | bool | Whether the alter operate failed | +| CREATE_TIME | datetime | Tablet Create Time | +| UPDATE_TIME | datetime | Last Tablet Writted Time | +| IS_OVERLAP | bool | Whether tablets overlap | diff --git a/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/system-tables/information_schema/backend_tablets.md b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/system-tables/information_schema/backend_tablets.md new file mode 100644 index 0000000000000..85185367dfa31 --- /dev/null +++ b/i18n/zh-CN/docusaurus-plugin-content-docs/current/admin-manual/system-tables/information_schema/backend_tablets.md @@ -0,0 +1,58 @@ +--- +{ + "title": "backend_tablets", + "language": "zh-CN" +} +--- + + + +## 概述 + +在 Backends 上查看 talbet 的信息。(doris 3.0.7添加) + +## 所属数据库 + + +`information_schema` + + +## 表信息 + +| 列名 | 类型 | 说明 | +| ------------------ | ------------ | ------------------- | +| BE_ID | bigint | Backend 的 ID | +| TABLET_ID | bigint | Tablet 的 ID | +| REPLICA_ID | bigint | Replica 的 ID | +| PARTITION_ID | bigint | Partition 的 ID | +| TABLET_PATH | varchar(256) | Tablet 的路径 | +| TABLET_LOCAL_SIZE | bigint | Tablet 在本地的大小 | +| TABLET_REMOTE_SIZE | bigint | Tablet 在远端的大小 | +| VERSION_COUNT | bigint | Tablet 的 version 数 | +| SEGMENT_COUNT | bigint | Segment 的数量 | +| NUM_COLUMNS | bigint | Column 的数量 | +| ROW_SIZE | bigint | Row 的大小 | +| COMPACTION_SCORE | int | Compaction Score | +| COMPRESS_KIND | varchar(256) | Compression 的类型 | +| IS_USED | bool | Tablet 数据目录是否打开 | +| IS_ALTER_FAILED | bool | Alter 操作是否失败 | +| CREATE_TIME | datetime | Tablet 创建时间 | +| UPDATE_TIME | datetime | Tablet 更新时间 | +| IS_OVERLAP | bool | Tablets 是否 Overlap | diff --git a/sidebars.json b/sidebars.json index 97fd42624e460..384176f74889e 100644 --- a/sidebars.json +++ b/sidebars.json @@ -672,6 +672,7 @@ "admin-manual/system-tables/information_schema/active_queries", "admin-manual/system-tables/information_schema/backend_active_tasks", "admin-manual/system-tables/information_schema/backend_configuration", + "admin-manual/system-tables/information_schema/backend_tablets", "admin-manual/system-tables/information_schema/catalog_meta_cache_statistics", "admin-manual/system-tables/information_schema/character_sets", "admin-manual/system-tables/information_schema/collations",