invoker.go ×10

Frontier kind: Code frontier

unlabeled · c_6d4397f03b35

19 tests · 5224 LOC · 170 files · introduces 0 tests · 26 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
10 ranges26 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
1183 ranges5224 lines · 170 files · Browse complete extent
All tests (intent)
19 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: 26 introduced LOC across 10 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/chasm/lib/scheduler/invoker.go 26 introduced LOC · 10 ranges

Open complete file

158 // the number of completed results that were dropped because they were previously
159 // recorded.
160 > func (i *Invoker) recordExecuteResult(ctx chasm.MutableContext, result *executeResult) (newlyStarted, droppedDuplicates int) { invoker.go
161 > completed := make(map[string]*schedulespb.BufferedStart) // request ID -> BufferedStart with RunId/StartTime
162 > failed := make(map[string]bool) // request ID -> is present
163 > retryable := make(map[string]*schedulespb.BufferedStart) // request ID -> *BufferedStart
164 > canceled := make(map[string]bool) // run ID -> is present
165 > terminated := make(map[string]bool) // run ID -> is present
166 >
167 > for _, start := range result.CompletedStarts {
168 completed[start.RequestId] = start
169 }
170 > for _, start := range result.FailedStarts { invoker.go
171 failed[start.RequestId] = true
172 }
173 > for _, start := range result.RetryableStarts { invoker.go
174 retryable[start.RequestId] = start
175 }
176 > for _, wf := range result.CompletedCancels { invoker.go
177 canceled[wf.RunId] = true
178 }
179 > for _, wf := range result.CompletedTerminates { invoker.go
180 terminated[wf.RunId] = true
181 }
182
183 // Remove failed (non-retryable) starts from the buffer.
184 > removedStarts := 0 invoker.go
185 > retriedStarts := 0
186 > i.BufferedStarts = slices.DeleteFunc(i.GetBufferedStarts(), func(start *schedulespb.BufferedStart) bool {
187 failed := failed[start.RequestId]
188 if failed {
191 return failed
192 })
193 > i.CancelWorkflows = slices.DeleteFunc(i.GetCancelWorkflows(), func(we *commonpb.WorkflowExecution) bool { invoker.go
194 canceled := canceled[we.RunId]
195 if canceled {
198 return canceled
199 })
200 > i.TerminateWorkflows = slices.DeleteFunc(i.GetTerminateWorkflows(), func(we *commonpb.WorkflowExecution) bool { invoker.go
201 terminated := terminated[we.RunId]
202 if terminated {
207
208 // Update BufferedStarts with results, dropping duplicates.
209 > for _, start := range i.GetBufferedStarts() { invoker.go
210 if start.RunId != "" {
211 if _, isDuplicate := completed[start.RequestId]; isDuplicate {
227 }
228
229 > i.getOrCreateEventLog(ctx).LogEvent(ctx, invoker.go
230 > fmt.Sprintf("recordExecuteResult kicked off %d starts, removed %d starts, retried %d starts",
231 > newlyStarted,
232 > removedStarts,
233 > retriedStarts))
234 >
235 > i.addTasks(ctx)
236 > return newlyStarted, droppedDuplicates
237 }
238