-
Notifications
You must be signed in to change notification settings - Fork 5
Reduce N+1s by caching submitted project count (Part 1 of 2) #804
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
zetter-rpf
wants to merge
2
commits into
main
Choose a base branch
from
cache-submitted-count
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
7 changes: 7 additions & 0 deletions
7
db/migrate/20260429120000_add_submitted_projects_count_to_lessons.rb
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| # frozen_string_literal: true | ||
|
|
||
| class AddSubmittedProjectsCountToLessons < ActiveRecord::Migration[7.2] | ||
| def change | ||
| add_column :lessons, :submitted_projects_count, :integer, null: false, default: 0 | ||
| end | ||
| end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # frozen_string_literal: true | ||
|
|
||
| namespace :lessons do | ||
| desc 'Backfill cached submitted project counts for lessons' | ||
| task backfill_submitted_projects_count: :environment do | ||
| Lesson.connection.execute <<~SQL.squish | ||
| WITH submitted_counts AS ( | ||
| SELECT lesson_projects.lesson_id, COUNT(*) AS submitted_projects_count | ||
| FROM projects lesson_projects | ||
| INNER JOIN projects remixes ON remixes.remixed_from_id = lesson_projects.id | ||
| INNER JOIN school_projects ON school_projects.project_id = remixes.id | ||
| INNER JOIN school_project_transitions ON school_project_transitions.school_project_id = school_projects.id | ||
| WHERE school_project_transitions.most_recent = TRUE | ||
| AND school_project_transitions.to_state = 'submitted' | ||
| AND lesson_projects.lesson_id IS NOT NULL | ||
| GROUP BY lesson_projects.lesson_id | ||
| ) | ||
| UPDATE lessons | ||
| SET submitted_projects_count = COALESCE(submitted_counts.submitted_projects_count, 0) | ||
| FROM lessons target_lessons | ||
| LEFT JOIN submitted_counts ON submitted_counts.lesson_id = target_lessons.id | ||
| WHERE lessons.id = target_lessons.id | ||
| SQL | ||
| end | ||
| end | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # frozen_string_literal: true | ||
|
|
||
| require 'rails_helper' | ||
| require 'rake' | ||
|
|
||
| RSpec.describe 'lessons', type: :task do | ||
| describe ':backfill_submitted_projects_count' do | ||
| let(:task) { Rake::Task['lessons:backfill_submitted_projects_count'] } | ||
| let(:school) { create(:school) } | ||
| let(:teacher) { create(:teacher, school:) } | ||
| let(:student) { create(:student, school:) } | ||
| let(:lesson) { create(:lesson, school:, user_id: teacher.id) } | ||
|
|
||
| before do | ||
| task.reenable | ||
| end | ||
|
|
||
| it 'sets cached submitted project counts for all lessons' do | ||
| submitted_remix = create(:project, school:, remixed_from_id: lesson.project.id, user_id: student.id) | ||
| submitted_remix.school_project.transition_status_to!(:submitted, student.id) | ||
|
|
||
| returned_remix = create(:project, school:, remixed_from_id: lesson.project.id, user_id: student.id) | ||
| returned_remix.school_project.transition_status_to!(:submitted, student.id) | ||
| returned_remix.school_project.transition_status_to!(:returned, teacher.id) | ||
|
|
||
| other_lesson = create(:lesson, school:, user_id: teacher.id, submitted_projects_count: 7) | ||
|
|
||
| lesson.update!(submitted_projects_count: 0) | ||
|
|
||
| task.invoke | ||
|
|
||
| expect(lesson.reload.submitted_projects_count).to eq(1) | ||
| expect(other_lesson.reload.submitted_projects_count).to eq(0) | ||
|
zetter-rpf marked this conversation as resolved.
|
||
| end | ||
| end | ||
| end | ||
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.