concurrent_request_limit.go ×4

Frontier kind: Code frontier

unlabeled · c_bf68ba43ea7c

21 tests · 2138 LOC · 94 files · introduces 0 tests · 23 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
4 ranges23 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
282 ranges2138 lines · 94 files · Browse complete extent
All tests (intent)
21 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 4 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/common/rpc/interceptor/concurrent_request_limit.go 23 introduced LOC · 4 ranges

Open complete file

103 }
104
105 > counter := ni.counter(namespaceName, methodName) concurrent_request_limit.go
106 > count := atomic.AddInt32(counter, int32(token))
107 > cleanup := func() { atomic.AddInt32(counter, -int32(token)) }
108
109 > mh.Gauge(metrics.ServicePendingRequests.Name()).Record(float64(count)) concurrent_request_limit.go
110 >
111 > // frontend.namespaceCount is applied per poller type temporarily to prevent
112 > // one poller type to take all token waiting in the long poll.
113 > if float64(count) > ni.quotaCalculator.GetQuota(namespaceName.String()) {
114 return cleanup, ErrNamespaceCountLimitServerBusy
115 }
120 namespace namespace.Name,
121 methodName string,
122 > ) *int32 { concurrent_request_limit.go
123 > key := ni.getTokenKey(namespace, methodName)
124 >
125 > ni.Lock()
126 > defer ni.Unlock()
127 >
128 > counter, ok := ni.activeTokensCount[key]
129 > if !ok {
130 > counter = new(int32)
131 > ni.activeTokensCount[key] = counter
132 > }
133 > return counter
134 }
135
137 namespace namespace.Name,
138 methodName string,
139 > ) string { concurrent_request_limit.go
140 > return namespace.String() + "/" + methodName
141 > }