其他分享
首页 > 其他分享> > tidb 调整索引创建速度

tidb 调整索引创建速度

作者:互联网

调整索引创建的速度

#生成测试数据
sysbench --config-file=./config_new ./oltp_common.lua --table-size=200000 prepare


set global tidb_ddl_reorg_worker_cnt=2;
set global tidb_ddl_reorg_batch_size=2;
create index idx_1 on sbtest1(c);
需要100s
set global tidb_ddl_reorg_worker_cnt=4;
set global tidb_ddl_reorg_batch_size=256;
create index idx_2 on sbtest1(c);
需要30s

tidb_ddl_reorg_batch_size:
这个变量用来设置 DDL 操作 re-organize 阶段的 batch size。比如 ADD INDEX 操作,需要回填索引数据,
通过并发 tidb_ddl_reorg_worker_cnt 个 worker 一起回填数据,每个 worker 以 batch 为单位进行回填。
tidb_ddl_reorg_worker_cnt:
这个变量用来设置 DDL 操作 re-organize 阶段的并发度

标签:创建,tidb,worker,batch,索引,reorg,ddl,size
来源: https://www.cnblogs.com/52shaidan/p/16619057.html