Skip to content
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

Add a proper index to Upload (aka ReportSession) #441

Merged
merged 1 commit into from
Jan 8, 2025

Conversation

Swatinem
Copy link
Contributor

This adds an index covering report_id and upload_type, in that order. The most frequent queries use report_id, and some further index by upload_type.

So this newly added index will cover those two frequent queries. Indexing additionally on order_number is not necessary. While we do run queries using all three fields, those are not as frequent, and they should be served by the newly added index as well. One more argument against indexing on the order_number is that we UPDATE this field when processing an upload, which means we would have to touch and update the index on such operation as well, which we could also avoid.

@Swatinem Swatinem self-assigned this Nov 28, 2024
This adds an index covering `report_id` and `upload_type`, in that order.
The most frequent queries use `report_id`, and some further index by `upload_type`.

So this newly added index will cover those two frequent queries. Indexing additionally on `order_number` is not necessary. While we do run queries using all three fields, those are not as frequent, and they should be served by the newly added index as well.
One more argument against indexing on the `order_number` is that we `UPDATE` this field when processing an upload, which means we would have to touch and update the index on such operation as well, which we could also avoid.
@Swatinem Swatinem force-pushed the swatinem/upload-idx-part1 branch from 04713aa to 3af2101 Compare January 8, 2025 08:05
Copy link

codecov bot commented Jan 8, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 89.97%. Comparing base (b186b3c) to head (3af2101).
Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main     #441      +/-   ##
==========================================
- Coverage   90.54%   89.97%   -0.58%     
==========================================
  Files         403      324      -79     
  Lines       12538     9199    -3339     
  Branches     2105     1633     -472     
==========================================
- Hits        11353     8277    -3076     
+ Misses       1076      859     -217     
+ Partials      109       63      -46     
Flag Coverage Δ
shared-docker-uploader ?

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@Swatinem Swatinem added this pull request to the merge queue Jan 8, 2025
Merged via the queue into main with commit c3288a0 Jan 8, 2025
6 checks passed
@Swatinem Swatinem deleted the swatinem/upload-idx-part1 branch January 8, 2025 08:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants