[opt](config) rename alter_inverted_index_worker_count to alter_index_worker_count, and add docs (#21985)

This commit is contained in:
YueW
2023-07-20 17:50:04 +08:00
committed by GitHub
parent 650d7cfc8c
commit c31e826756
7 changed files with 18 additions and 5 deletions

View File

@ -157,7 +157,7 @@ void TaskWorkerPool::start() {
case TaskWorkerType::ALTER_TABLE:
break;
case TaskWorkerType::ALTER_INVERTED_INDEX:
_worker_count = config::alter_inverted_index_worker_count;
_worker_count = config::alter_index_worker_count;
_cb = std::bind<void>(&TaskWorkerPool::_alter_inverted_index_worker_thread_callback, this);
break;
case TaskWorkerType::CLONE: