Remove rare annotation from some code probes
This commit is contained in:
parent
97c5003af3
commit
994fd4aa41
|
@ -965,8 +965,7 @@ ACTOR Future<MonitorLeaderInfo> monitorProxiesOneGeneration(
|
|||
allConnectionsFailed = false;
|
||||
} else {
|
||||
CODE_PROBE(rep.getError().code() == error_code_failed_to_progress,
|
||||
"Coordinator cant talk to cluster controller",
|
||||
probe::decoration::rare);
|
||||
"Coordinator cant talk to cluster controller");
|
||||
TraceEvent("MonitorProxiesConnectFailed")
|
||||
.detail("Error", rep.getError().name())
|
||||
.detail("Coordinator", clientLeaderServer.getAddressString());
|
||||
|
|
|
@ -4838,7 +4838,7 @@ maybeDuplicateTSSStreamFragment(Request& req, QueueModel* model, RequestStream<R
|
|||
Optional<TSSEndpointData> tssData = model->getTssData(ssStream->getEndpoint().token.first());
|
||||
|
||||
if (tssData.present()) {
|
||||
CODE_PROBE(true, "duplicating stream to TSS", probe::decoration::rare);
|
||||
CODE_PROBE(true, "duplicating stream to TSS");
|
||||
resetReply(req);
|
||||
// FIXME: optimize to avoid creating new netNotifiedQueueWithAcknowledgements for each stream duplication
|
||||
RequestStream<Request> tssRequestStream(tssData.get().endpoint);
|
||||
|
|
|
@ -320,7 +320,7 @@ bool TokenCacheImpl::validate(TenantNameRef name, StringRef token) {
|
|||
}
|
||||
}
|
||||
if (!tenantFound) {
|
||||
CODE_PROBE(true, "Valid token doesn't reference tenant", probe::decoration::rare);
|
||||
CODE_PROBE(true, "Valid token doesn't reference tenant");
|
||||
TraceEvent(SevWarn, "TenantTokenMismatch").detail("From", peer).detail("Tenant", name.toString());
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -49,7 +49,7 @@ bool GrvProxyTagThrottler::TagQueue::isMaxThrottled(double maxThrottleDuration)
|
|||
}
|
||||
|
||||
void GrvProxyTagThrottler::TagQueue::rejectRequests(LatencyBandsMap& latencyBandsMap) {
|
||||
CODE_PROBE(true, "GrvProxyTagThrottler rejecting requests", probe::decoration::rare);
|
||||
CODE_PROBE(true, "GrvProxyTagThrottler rejecting requests");
|
||||
while (!requests.empty()) {
|
||||
auto& delayedReq = requests.front();
|
||||
delayedReq.updateProxyTagThrottledDuration(latencyBandsMap);
|
||||
|
|
|
@ -200,11 +200,11 @@ void MockStorageServer::setShardStatus(const KeyRangeRef& range, MockShardStatus
|
|||
|
||||
// change the old status
|
||||
if (ranges.begin().begin() < range.begin && ranges.begin().end() > range.end) {
|
||||
CODE_PROBE(true, "Implicitly split single shard to 3 pieces", probe::decoration::rare);
|
||||
CODE_PROBE(true, "Implicitly split single shard to 3 pieces");
|
||||
threeWayShardSplitting(ranges.begin().range(), range, ranges.begin().cvalue().shardSize, restrictSize);
|
||||
} else {
|
||||
if (ranges.begin().begin() < range.begin) {
|
||||
CODE_PROBE(true, "Implicitly split begin range to 2 pieces", probe::decoration::rare);
|
||||
CODE_PROBE(true, "Implicitly split begin range to 2 pieces");
|
||||
twoWayShardSplitting(ranges.begin().range(), range.begin, ranges.begin().cvalue().shardSize, restrictSize);
|
||||
}
|
||||
if (ranges.end().begin() > range.end) {
|
||||
|
|
|
@ -366,7 +366,7 @@ ACTOR Future<Void> resolveBatch(Reference<Resolver> self,
|
|||
isEncryptionOpSupported(EncryptOperationType::TLOG_ENCRYPTION) ? &cipherKeys
|
||||
: nullptr);
|
||||
}
|
||||
CODE_PROBE(self->forceRecovery, "Resolver detects forced recovery", probe::decoration::rare);
|
||||
CODE_PROBE(self->forceRecovery, "Resolver detects forced recovery");
|
||||
}
|
||||
|
||||
self->resolvedStateTransactions += req.txnStateTransactions.size();
|
||||
|
|
|
@ -304,7 +304,7 @@ struct IDDTxnProcessorApiWorkload : TestWorkload {
|
|||
self->verifyServerKeyDest(params);
|
||||
// test finish or started but cancelled movement
|
||||
if (self->testStartOnly || deterministicRandom()->coinflip()) {
|
||||
CODE_PROBE(true, "RawMovementApi partial started", probe::decoration::rare);
|
||||
CODE_PROBE(true, "RawMovementApi partial started");
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue