OTWO-7664 Investigate PG::QueryCanceled: Statement Timeout Error#1906
Open
bd-vaibhav wants to merge 1 commit into
Open
OTWO-7664 Investigate PG::QueryCanceled: Statement Timeout Error#1906bd-vaibhav wants to merge 1 commit into
bd-vaibhav wants to merge 1 commit into
Conversation
00fe69c to
3e4fe2f
Compare
There was a problem hiding this comment.
Pull request overview
This PR appears aimed at investigating/mitigating PG::QueryCanceled: statement timeout issues by changing how commits are queried for an analysis, and it also updates the PostgreSQL structure.sql dump.
Changes:
- Updates
Commit.by_analysisquery composition (joins/filters) to change how commits are scoped to an analysis. - Regenerates
db/structure.sql, including dump header/encoding changes and modifiedschema_migrationsinsert section.
Reviewed changes
Copilot reviewed 1 out of 1 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| db/structure.sql | Updated DB structure dump; currently includes header/encoding/meta-command changes and altered schema_migrations inserts. |
| app/models/commit.rb | Modifies Commit.by_analysis scope to use different joins and precomputed sloc_set_ids. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
19
to
25
| scope :by_analysis, lambda { |analysis| | ||
| joins(code_set: [sloc_sets: :analysis_sloc_sets]) | ||
| sloc_set_ids = analysis.sloc_sets.pluck(:id) | ||
| joins(code_set: :sloc_sets) | ||
| .where(sloc_sets: { id: sloc_set_ids }) | ||
| .joins('INNER JOIN analysis_sloc_sets ON analysis_sloc_sets.sloc_set_id = sloc_sets.id') | ||
| .joins('and commits.position <= analysis_sloc_sets.as_of') | ||
| .where(analysis_sloc_sets: { analysis_id: analysis.id }) |
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.
No description provided.