title | summary |
---|---|
ADMIN CLEANUP INDEX |
An overview of the usage of ADMIN CLEANUP for the TiDB database. |
The ADMIN CLEANUP INDEX
statement is used to delete redundant indexes from a table when the table has inconsistent data and index. Note that this syntax does not support foreign key constraints yet.
AdminCleanupStmt ::=
'ADMIN' 'CLEANUP' ( 'INDEX' TableName IndexName | 'TABLE' 'LOCK' TableNameList )
TableNameList ::=
TableName ( ',' TableName )*
Assume that the tbl
table in a database has inconsistent data and index due to some reasons (for example, some row data is lost in the cluster in a disaster recovery scenario):
SELECT * FROM tbl;
ERROR 1105 (HY000): inconsistent index idx handle count 3 isn't equal to value count 2
ADMIN CHECK INDEX tbl idx ;
ERROR 1105 (HY000): handle &kv.CommonHandle{encoded:[]uint8{0x1, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf8}, colEndOffsets:[]uint16{0xa}}, index:types.Datum{k:0x5, decimal:0x0, length:0x0, i:0, collation:"utf8mb4_bin", b:[]uint8{0x0}, x:interface {}(nil)} != record:<nil>
It can be seen from the error message of the SELECT
query that, the tbl
table contains two rows of data and three rows of index data, which means inconsistent row and index data. At the same time, at least one index is in dangling state. In this case, you can use the ADMIN CLEANUP INDEX
statement to delete the dangling index:
ADMIN CLEANUP INDEX tbl idx;
The execution result is as follows:
ADMIN CLEANUP INDEX tbl idx;
+---------------+
| REMOVED_COUNT |
+---------------+
| 1 |
+---------------+
You can execute the ADMIN CHECK INDEX
statement again to check the consistency of data and index, and verify whether the data has been restored to a normal state:
ADMIN CHECK INDEX tbl idx;
Query OK, 0 rows affected (0.01 sec)
Note:
When the data and index are inconsistent due to the loss of replicas:
- There might be a loss of both row data and index data. To restore the consistency, use the
ADMIN CLEANUP INDEX
andADMIN RECOVER INDEX
statements together.- The
ADMIN CLEANUP INDEX
statement is always executed in a single thread. When the table data is large, it is recommended to recover the index data by rebuilding the index.- When you execute the
ADMIN CLEANUP INDEX
statement, the corresponding table or index is not locked and TiDB allows other sessions to modify the table records at the same time. However, in this case,ADMIN CLEANUP INDEX
might not be able to handle all table records correctly. Therefore, when you executeADMIN CLEANUP INDEX
, avoid modifying the table data at the same time.- If you use the enterprise edition of TiDB, you can submit a request to contact the support engineer for help.
The
ADMIN CLEANUP INDEX
statement is not atomic: if the statement is interrupted during execution, it is recommended to execute it again until it succeeds.
Note:
When the data and index are inconsistent due to the loss of replicas:
- There might be a loss of both row data and index data. To restore the consistency, use the
ADMIN CLEANUP INDEX
andADMIN RECOVER INDEX
statements together.- The
ADMIN CLEANUP INDEX
statement is always executed in a single thread. When the table data is large, it is recommended to recover the index data by rebuilding the index.- When you execute the
ADMIN CLEANUP INDEX
statement, the corresponding table or index is not locked and TiDB allows other sessions to modify the table records at the same time. However, in this case,ADMIN CLEANUP INDEX
might not be able to handle all table records correctly. Therefore, when you executeADMIN CLEANUP INDEX
, avoid modifying the table data at the same time.- If you use the enterprise edition of TiDB, you can submit a request to contact the support engineer for help.
The
ADMIN CLEANUP INDEX
statement is not atomic: if the statement is interrupted during execution, it is recommended to execute it again until it succeeds.
This statement is a TiDB extension to MySQL syntax.