registry.go ×7

Frontier kind: Code frontier

unlabeled · c_7f24270f2be2

24 tests · 2176 LOC · 89 files · introduces 0 tests · 17 LOC · 2 files

Introduces — evidence that enters the hierarchy at this concept

Code
8 ranges17 lines · 2 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
344 ranges2176 lines · 89 files · Browse complete extent
All tests (intent)
24 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.

2 files ranked by introduced lines: 17 introduced LOC across 8 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/common/namespace/nsregistry/registry.go 15 introduced LOC · 7 ranges

Open complete file

228 }
229
230 > if err := r.refresher.Err(); !errors.Is(err, persistence.ErrWatchNotSupported) { registry.go
231 // Watch failed to start for a reason other than ErrWatchNotSupported
232 metrics.NamespaceRegistryWatchStartFailures.With(r.metricsHandler).Record(1)
233 r.logger.Warn("Unable to start namespace watch - falling back to polling", tag.Error(err))
234 > } else { registry.go
235 > r.logger.Info("Watch not supported by persistence, namespace registry will use polling")
236 > }
237
238 // Fall back to polling
239 > if err := r.refreshNamespaces(ctx); err != nil { registry.go
240 r.logger.Fatal("Unable to initialize namespace registry", tag.Error(err))
241 }
242 > r.refresher = goro.NewHandle(ctx).Go(r.runPollingLoop) registry.go
243 }
244
464 result, err := r.startWatch(ctx, !watchStartedOnce.IsShutdown())
465 if err != nil {
466 > return err registry.go
467 > }
468
469 watchStartedOnce.Shutdown()
479 case <-watchStartedOnce.Channel():
480 return handle, true
481 > case <-handle.Done(): registry.go
482 > return handle, false
483 }
484 }
529 // runPollingLoop periodically refreshes the namespace cache.
530 // Used as fallback when namespace watches are not supported.
531 > func (r *registry) runPollingLoop(ctx context.Context) error { registry.go
532 > timer := time.NewTimer(r.refreshInterval())
533 >
534 > for {
535 > select {
536 case <-ctx.Done():
537 return nil
go.temporal.io/server/common/backoff/retry.go 2 introduced LOC · 1 range

Open complete file

137
138 if err == ctx.Err() || !isRetryable(err) {
139 > return zero, err retry.go
140 > }
141
142 if _, ok := err.(*serviceerror.ResourceExhausted); ok {