-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Update tiflash system tables #20253
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
JaySon-Huang
wants to merge
2
commits into
pingcap:master
Choose a base branch
from
JaySon-Huang:add_tiflash_system_table_desc
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Update tiflash system tables #20253
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
title: TIFLASH_INDEXES | ||
summary: 了解 information_schema 表 `TIFLASH_INDEXES`。 | ||
--- | ||
|
||
# TIFLASH_TABLES | ||
|
||
> **警告:** | ||
> | ||
> 请不要在生产环境中使用该系统表,因为该表字段信息尚未固定下来,可能会在 TiDB 未来版本中发生变化。 | ||
|
||
`TIFLASH_INDEXES` 表提供有关 TiFlash 副本上索引构建的的统计信息。 | ||
|
||
```sql | ||
USE information_schema; | ||
DESC tiflash_indexes; | ||
``` | ||
|
||
```sql | ||
+-------------------------+---------------+------+------+---------+-------+ | ||
| Field | Type | Null | Key | Default | Extra | | ||
+-------------------------+---------------+------+------+---------+-------+ | ||
| TIDB_DATABASE | varchar(64) | YES | | NULL | | | ||
| TIDB_TABLE | varchar(64) | YES | | NULL | | | ||
| TABLE_ID | bigint | YES | | NULL | | | ||
| COLUMN_NAME | varchar(64) | YES | | NULL | | | ||
| INDEX_NAME | varchar(64) | YES | | NULL | | | ||
| COLUMN_ID | bigint | YES | | NULL | | | ||
| INDEX_ID | bigint | YES | | NULL | | | ||
| INDEX_KIND | varchar(64) | YES | | NULL | | | ||
| ROWS_STABLE_INDEXED | bigint | YES | | NULL | | | ||
| ROWS_STABLE_NOT_INDEXED | bigint | YES | | NULL | | | ||
| ROWS_DELTA_INDEXED | bigint | YES | | NULL | | | ||
| ROWS_DELTA_NOT_INDEXED | bigint | YES | | NULL | | | ||
| ERROR_MESSAGE | varchar(1024) | YES | | NULL | | | ||
| TIFLASH_INSTANCE | varchar(64) | YES | | NULL | | | ||
+-------------------------+---------------+------+------+---------+-------+ | ||
``` | ||
|
||
`TIFLASH_INDEXES` 表中各列的字段含义如下: | ||
|
||
- `TIDB_DATABASE`:表所属的数据库的名称。 | ||
- `TIDB_TABLE`:表的名称。 | ||
- `TABLE_ID`:表的内部 ID,该 ID 在一个 TiDB 集群内部唯一。 | ||
- `COLUMN_NAME`:索引所在的列名 | ||
- `INDEX_NAME`:索引的名称 | ||
- `COLUMN_ID`:索引所在的列 ID | ||
- `INDEX_ID`:索引的 ID | ||
- `INDEX_KIND`:索引的类型 | ||
- `ROWS_STABLE_INDEXED`:TiFlash 副本中 Stable 层已经构建完索引的行数 | ||
- `ROWS_STABLE_NOT_INDEXED`:TiFlash 副本中 Stable 层未构建索引的行数 | ||
- `ROWS_DELTA_INDEXED`:TiFlash 副本中 Delta 层已经构建完索引的行数 | ||
- `ROWS_DELTA_NOT_INDEXED`:TiFlash 副本中 Delta 层未构建索引的行数 | ||
- `ERROR_MESSAGE`:索引构建过程中遇到不可恢复的错误信息 | ||
- `TIFLASH_INSTANCE`:TiFlash 实例地址。 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.