Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.Original topic: 索引加速JOB_TYPE 一列中的 ingest变成txn-merge了,啥意思?

【TiDB Usage Environment】Production Environment / Testing / Poc
【TiDB Version】v6.5.0
【Reproduction Path】
A table with 460 million rows, testing the index acceleration feature of version 6.5.
Set tidb_ddl_reorg_worker_cnt to 32.
Observe the progress through admin show ddl jobs; initially, the job_type column shows add index /* ingest /, but after a few seconds, it changes to: add index / txn-merge */
At the same time, the /tmp/tidb/ directory /tmp/tidb/tmp_ddl-4000 is no longer used.
Does this mean that the index acceleration feature is not being used?
The documentation says
- To verify whether the completed
ADD INDEX
operation used the index acceleration feature, you can execute theADMIN SHOW DDL JOBS
statement and check if theJOB_TYPE
column contains the wordingest
.
【Encountered Problem: Problem Phenomenon and Impact】
admin show ddl jobs; the job_type column shows add index /* txn-merge */. What does this mean?
There is no relevant explanation found in the documentation.
【Resource Configuration】
A single-node physical machine.