Specific Implementation Module for Converting Write Requests to Raft Logs

Note:
This topic has been translated from a Chinese forum by GPT and might contain errors.

Original topic: 写入请求转化为raft log的具体实现模块

| username: Raymond

When I watched the official TiDB course video before, it said that the raftstore thread pool converts write requests into raft logs. But today, I checked the official documentation and found that it says the scheduler thread pool completes this task. So, which thread pool actually converts write requests into raft logs?
It should be the scheduler that implements it, right?

| username: xfworld | Original post link

The process you mentioned should be called “propose” within TiDB.

The scheduler also participates in this process as an asynchronous event notification type of trigger mechanism, and it is not serial.

For more details, you can refer to the following documents:

| username: Raymond | Original post link

Okay, thank you, teacher. I will go take a look.

| username: system | Original post link

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.