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
Is your feature request related to a problem? Please describe:
When I test the performance bottleneck of duplication, I feel strange about the task priority of load_from_private_log stage. load_from_private_log is the main time-consuming stage that generates IO, and is handled by the THREAD_POOL_REPLICATION_LONG thread. The priority of the dup-related tasks is also defined as LOW.
We can see all the RPC heandled by THREAD_POOL_REPLICATION_LONG:
In fact, the Pegasus users always requires real-time dup. If the delay of the dup process of a piece of data is too high, when the master cluster down, the backup cluster will be unable to completely replace all the data of the master cluster to provide services.
And I do not think LPC_DISK_STAT, LPC_GARBAGE_COLLECT_LOGS_AND_REPLICAS task is importanter than duplicate.
Describe the feature you'd like:
I'd like to raise the priority of load_from_private_log when doing duplication.
The text was updated successfully, but these errors were encountered:
Feature Request
Is your feature request related to a problem? Please describe:
When I test the performance bottleneck of duplication, I feel strange about the task priority of
load_from_private_log stage
.load_from_private_log
is the main time-consuming stage that generates IO, and is handled by the THREAD_POOL_REPLICATION_LONG thread. The priority of the dup-related tasks is also defined as LOW.We can see all the RPC heandled by THREAD_POOL_REPLICATION_LONG:
In fact, the Pegasus users always requires real-time dup. If the delay of the dup process of a piece of data is too high, when the master cluster down, the backup cluster will be unable to completely replace all the data of the master cluster to provide services.
And I do not think
LPC_DISK_STAT
,LPC_GARBAGE_COLLECT_LOGS_AND_REPLICAS
task is importanter than duplicate.Describe the feature you'd like:
I'd like to raise the priority of
load_from_private_log
when doing duplication.The text was updated successfully, but these errors were encountered: