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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

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.

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
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