Converge nightly place-visit scan instead of re-scanning forever - #3216
Open
Freika wants to merge 1 commit into
Open
Converge nightly place-visit scan instead of re-scanning forever#3216Freika wants to merge 1 commit into
Freika wants to merge 1 commit into
Conversation
- Converge nightly place-visit scan instead of re-scanning forever - Scope place-visit scan to the nearest place
Contributor
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
GitHub issue: #3150
Summary
PlaceVisitsCalculatingJobre-scanned the same place-nearby points forever because points that were evaluated but never formed a visit stayedvisit_id: niland were re-queried every run — pinning DB CPU for ~23h/day since 1.10.0.points.visits_scanned_atand excludes them from the month-scan trigger, so the job converges.Migration
add_column :points, :visits_scanned_at, :datetime— nullable, no default, no index → instant metadata-only add (safe on the largepointstable). Idempotent.visits_scanned_at: NULL, so the first post-deploy run does the one-time full scan, then converges from the second run on.Verification
Places::Visits::Create#callno longer re-loads the same month's points.spec/services/places/visits/create_spec.rb,spec/services/areas/visits/create_spec.rb,spec/jobs/place_visits_calculating_job_spec.rb+ regression → 23 examples, 0 failures.Review notes
db/schema.rbwas hand-reconciled to add only the one column + version bump (Rails 8.1's dump reordered unrelated tables); please regenerate from a clean dev DB before merge.Areas::Visits::Createhas a similar shape but far fewer areas and novisit_idguard — left untouched (out of scope).