You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By hacking the code (doLearnerRead), I am able to eliminate the readIndex operation, to evaluate the cost of it. I run a simple SQL by different threads.
Benchmark SQL: select min(actual_disp_no) from A;
Single thread duration: 230ms
No updates during the benchmark.
The more threads, the higher SQL execution duration.
The more threads, the higher read index duration. The time spent on the cost of read index can be over 30%.
TiFlash cannot fully utilize the CPU resources. only use up to 40% of 40 cores.
The text was updated successfully, but these errors were encountered:
By hacking the code (
doLearnerRead
), I am able to eliminate thereadIndex
operation, to evaluate the cost of it. I run a simple SQL by different threads.Benchmark SQL: select min(actual_disp_no) from A;
Single thread duration: 230ms
No updates during the benchmark.
The text was updated successfully, but these errors were encountered: