transfer_queue_active_task_executor.go ×3

Frontier kind: Code frontier

unlabeled · c_43e91f5ecc55

2 tests · 10049 LOC · 266 files · introduces 0 tests · 23 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
3 ranges23 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
2160 ranges10049 lines · 266 files · Browse complete extent
All tests (intent)
2 testsBrowse complete intent

Neighbourhood graph

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.

Native relationship evidence

Every exact file and test below is linked only from the concept that introduces it.

Introduced tests

Every collected test enters the hierarchy at exactly one concept.

No tests are introduced at this concept. Its intent tests are introduced by other concepts.

Introduced code

Every collected source range enters the hierarchy at exactly one concept.

1 file ranked by introduced lines: 23 introduced LOC across 3 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/service/history/transfer_queue_active_task_executor.go 23 introduced LOC · 3 ranges

Open complete file

741 attributes,
742 ); err != nil {
743 > t.logger.Debug("Failed to signal external workflow execution", tag.Error(err)) transfer_queue_active_task_executor.go
744 >
745 > // Check to see if the error is non-transient, in which case add SignalFailed
746 > // event and complete transfer task by returning nil error.
747 > if common.IsServiceTransientError(err) || common.IsContextDeadlineExceededErr(err) {
748 // Transient errors are retried by the task framework; don't emit the failure metric here.
749 return err
750 }
751 > var failedCause enumspb.SignalExternalWorkflowExecutionFailedCause transfer_queue_active_task_executor.go
752 > switch err.(type) {
753 case *serviceerror.NotFound:
754 failedCause = enumspb.SIGNAL_EXTERNAL_WORKFLOW_EXECUTION_FAILED_CAUSE_EXTERNAL_WORKFLOW_EXECUTION_NOT_FOUND
769 // SignalExternalWorkflowExecutionFailed history event. If the event fails to
770 // commit, the task will be retried and the metric emitted again.
771 > metrics.SignalExternalWorkflowExecutionFailures.With(t.metricHandler).Record( transfer_queue_active_task_executor.go
772 > 1,
773 > metrics.FailureTag(failedCause.String()),
774 > metrics.StringTag("source", "remote_call"),
775 > )
776 > return t.signalExternalExecutionFailed(
777 > ctx,
778 > task,
779 > weContext,
780 > targetNamespaceName,
781 > targetNamespaceID,
782 > attributes.GetWorkflowExecution().GetWorkflowId(),
783 > attributes.GetWorkflowExecution().GetRunId(),
784 > attributes.Control,
785 > failedCause,
786 > )
787 }
788