-
Notifications
You must be signed in to change notification settings - Fork 588
AO3-3730 series stats #5288
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
anmazz
wants to merge
25
commits into
otwcode:master
Choose a base branch
from
anmazz:AO3-3730--series-stats
base: master
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
AO3-3730 series stats #5288
+678
−131
Conversation
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
anmazz
commented
Jul 28, 2025
-- Get the concatenated fandom string | ||
fandom_string AS ( | ||
SELECT taggings.taggable_id AS work_id, | ||
GROUP_CONCAT(DISTINCT tags.name ORDER BY tags.name SEPARATOR ', ') AS fandom_string |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is MariaDB specific, so might need to be changed if the SQL solution is used and is meant to be universal
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.
Pull Request Checklist
as the first thing in your pull request title (e.g.
AO3-1234 Fix thing
)until they are reviewed and merged before creating new pull requests.
Issue
https://otwarchive.atlassian.net/browse/AO3-3730
Purpose
I'm opening this as a draft so I can get feedback on my general approach/design decisions. This will hopefully have a lot of discussion if/when people can review.
Added:
Design approach
I began trying to use ActiveRecord but realized that was probably not the best way to go about this. This SQL is pretty big, but I've tried to evolve it so that it's easier to read with the CTEs and comments. That being said, it's still a lot, so sorry 😬.
My main goal was to do a union between the series and work stats and project them onto a single, standard object for ease of sorting. I felt the raw SQL was the best and most performant option for this since it gives me fine-grain control over selects/aggregates, doesn't hydrate a bunch of ActiveRecord entries, and avoids N+1 queries altogether. I've also tried as much as possible to limit Cartesian explosion.
Things to consider
There's a bunch of commented stuff/puts statements/linting errors/failed tests galore that I'll clean up later so apologies for that. Open to feedback on any and all parts of this PR!
Testing Instructions
Will fill out later.
References
Are there other relevant issues/pull requests/mailing list discussions? If not, you can remove this section.
Credit
anna (she/her)