_, executionLease, err := e.getExecutionLease(ctx, requestRef)
if err != nil {
}
defer executionLease.GetReleaseFn()(nil) //nolint:revive
Frontier kind: Joint frontier
unlabeled · c_f7cb76e766c8
1 test · 6378 LOC · 234 files · introduces 1 test · 29 LOC · 1 file
The orange circle is the focus. Violet and green circles are every ancestor and descendant, broader and narrower, at any distance; blue squares and pink diamonds are the introduced files and exact introduced tests of every visible concept, not only the focus's. Arrows point from broader to narrower concepts and bridge only concepts omitted from this view. Undirected links show source or test introduction. Concept and file size follows LOC; exact test nodes use test-count units.
Introduced files, introduced tests, and structurally relevant concept specialization
In the embedded map, ordinary wheel input scrolls the page; use the visible controls to zoom and drag to pan. Open the full-screen map for canvas navigation: wheel pans, Ctrl/Command plus wheel zooms, and arrow keys pan when this region is focused. On touch screens, open the full-screen map to pan or pinch. If JavaScript or WebGL is unavailable, use the native relationship evidence on this page.
Graph controls are ready.
Interactive rendering requires JavaScript and WebGL. Use the native relationship evidence on this page while the interactive map is unavailable.
Every exact file and test below is linked only from the concept that introduces it.
go.temporal.io/server/common/persistence/client/TestQuotasSuite/TestAPITypeCallOriginPriorityOverrideMappinggo.temporal.io/server/common/persistence/client/TestQuotasSuite/TestBackgroundTypeAPIPriorityOverrideMappinggo.temporal.io/server/common/persistence/client/TestQuotasSuite/TestCallerTypeDefaultPriorityMappinggo.temporal.io/server/common/persistence/client/TestQuotasSuite/TestRequestPrioritiesOrderedgo.temporal.io/server/common/rpc/interceptor/TestMethodToPatternMappinggo.temporal.io/server/common/rpc/interceptor/TestNamespaceSuite/TestFrontendAPIMetricsgo.temporal.io/server/common/rpc/interceptor/TestNamespaceSuite/TestHistoryAPIMetricsgo.temporal.io/server/common/rpc/interceptor/TestNamespaceSuite/TestMatchingAPIMetricsEvery collected test enters the hierarchy at exactly one concept.
1 test introduced at this concept.
Every collected source range enters the hierarchy at exactly one concept.
1 file ranked by introduced lines: 29 introduced LOC across 2 ranges. Expand a file to inspect source; the > gutter marks introduced lines.
_, executionLease, err := e.getExecutionLease(ctx, requestRef)
if err != nil {
}
defer executionLease.GetReleaseFn()(nil) //nolint:revive
// Mutable state was previously detected as stale and got reloaded,
// do a final check to ensure mutable state is not stale after reload.
if err != nil {
logger := log.With(shardContext.GetLogger(),
tag.WorkflowNamespaceID(ref.NamespaceID),
tag.WorkflowID(ref.BusinessID),
tag.WorkflowRunID(ref.RunID),
)
if errors.Is(err, consts.ErrStaleState) {
// This could happen when there's a replication lag upon force failover,
// and caller is using the reference from the original cluster in the
// new cluster before replication catches up.
//
// This could also happen due to data loss in the database,
// but we can't really distinguish the two cases here, so always return
// a retryable error here.
//
// TODO: consider adding a clusterID field to the generated token to distinguish
// the two cases.
logger.Warn(
"stale state after mutable state reload, could due to force namespace failover or data loss",
tag.Error(err),
)
executionLease.GetReleaseFn()(nil)
return nil, nil, serviceerror.NewUnavailablef("stale state, please retry")
}
// Stale reference case is already handled above.