Merge pull request #1869 from alexmiller-apple/sharded-txs-performance
Raise the priority of TLogRejoin above TLogPeekReply
This commit is contained in:
commit
98c3b24036
|
@ -51,6 +51,7 @@ struct MasterInterface {
|
|||
|
||||
void initEndpoints() {
|
||||
getCommitVersion.getEndpoint( TaskPriority::ProxyGetConsistentReadVersion );
|
||||
tlogRejoin.getEndpoint( TaskPriority::MasterTLogRejoin );
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -44,6 +44,7 @@ enum class TaskPriority {
|
|||
FailureMonitor = 8700,
|
||||
ResolutionMetrics = 8700,
|
||||
ClusterController = 8650,
|
||||
MasterTLogRejoin = 8646,
|
||||
ProxyStorageRejoin = 8645,
|
||||
ProxyCommitDispatcher = 8640,
|
||||
TLogQueuingMetrics = 8620,
|
||||
|
|
Loading…
Reference in New Issue