user_data_manager.go ×5

Frontier kind: Code frontier

unlabeled · c_5cb6ea6b4f5c

7 tests · 3181 LOC · 148 files · introduces 0 tests · 17 LOC · 1 file

Introduces — evidence that enters the hierarchy at this concept

Code
5 ranges17 lines · 1 files
Tests
0 tests

Contains — complete concept membership

All code (extent)
508 ranges3181 lines · 148 files · Browse complete extent
All tests (intent)
7 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: 17 introduced LOC across 5 ranges. Expand a file to inspect source; the > gutter marks introduced lines.

go.temporal.io/server/service/matching/user_data_manager.go 17 introduced LOC · 5 ranges

Open complete file

246
247 for ctx.Err() == nil {
248 > if err = m.refreshUserDataFromDB(ctx); errors.Is(err, errUserDataVersionMismatch) { user_data_manager.go
249 m.onFatalErr(unloadCauseConflict)
250 return err
251 }
252 > util.InterruptibleSleep(ctx, backoff.Jitter(m.config.GetUserDataRefresh(), 0.2)) user_data_manager.go
253 }
254
418
419 // Checks if data in db has not been modified since we loaded/modified it.
420 > func (m *userDataManagerImpl) refreshUserDataFromDB(ctx context.Context) error { user_data_manager.go
421 > // Lock here to ensure we're not in the middle of an update, otherwise we may incorrectly
422 > // think the db has old data if we update between read and verify.
423 > m.lock.Lock()
424 > defer m.lock.Unlock()
425 >
426 > response, err := m.store.GetTaskQueueUserData(ctx, &persistence.GetTaskQueueUserDataRequest{
427 > NamespaceID: m.partition.NamespaceId(),
428 > TaskQueue: m.partition.TaskQueue().Name(),
429 > })
430 > if common.IsNotFoundError(err) {
431 response, err = &persistence.GetTaskQueueUserDataResponse{}, nil
432 }
433 > if err != nil { user_data_manager.go
434 return err
435 }
436
437 > if response.UserData.GetVersion() == m.userData.GetVersion() { user_data_manager.go
438 > return nil
439 > }
440
441 tags := []tag.Tag{