-
-
Notifications
You must be signed in to change notification settings - Fork 184
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
Chapter 5: Add All Byte and Request Count Queries #107
Conversation
@simonhearne @flowlabs @jasti @zeman any desire to review these query PRs, or shall I only ping y'all for the article content phase? |
sql/2019/05_Third_Parties/05_06.sql
Outdated
NET.HOST(url) AS requestDomain, | ||
DomainsOver50Table.requestDomain as thirdPartyDomain | ||
FROM | ||
`httparchive.requests.2019_07_01_mobile` |
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.
Do you also want to include desktop in your analysis?
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.
I was anticipating doing everything on mobile for consistency because some metrics are only available on lighthouse dataset which is mobile.
Co-Authored-By: Rick Viscomi <[email protected]>
Is this ready for another review? |
Oh sorry I missed your thumbs up! Let me apply the last bit then. |
Aside: is there any GH setting I don't know about that lets you get notifications about that? I imagine it could get annoying for certain types, but code review comments would be nice. |
Yep I think it's ready @rviscomi! |
I hope this is the expected format. From #62 (comment) it sounds like we prefer duplication for easy of reading (many queries differ only in their
ORDER BY
clause or could easily be combined when run). Should this be called out in a comment perhaps?ref #86