-
Notifications
You must be signed in to change notification settings - Fork 4
Evaluate alternative provider measurement #518
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
pyropy
wants to merge
17
commits into
main
Choose a base branch
from
add/evalute-network-retrieval-measurement
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 8 commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
fc505fc
Evaluate network wide measurement
pyropy 45deeb0
Include network RSR to retrieval stats; Rename table
pyropy 8aa8f7c
Fix failing test
pyropy fe46311
Delete from table before tests
pyropy bfe90c0
Convert network measurement to object inside the measurement
pyropy 80ccb19
fix: Use getNetworkRetrievalResult to evaluate network retrieval meas…
pyropy 250380d
Add tests for getNetworkRetrievalResult
pyropy ab80460
Remove extra trailing whitespace in test name
pyropy 1a1a10a
Refactor network retrieval to alternative provider retrieval
pyropy a9ba7fd
Build alternative provider RSR
pyropy a712dae
Merge branch 'main' into add/evalute-network-retrieval-measurement
pyropy 4405334
Fix failing tests
pyropy f6da085
Merge branch 'add/evalute-network-retrieval-measurement' of github.co…
pyropy ed53bb6
Fix failing tests
pyropy e1ae263
Rename test
pyropy 71f8c23
Parse alternativeProviderCheck endAt
pyropy 249ed97
Add provider id
pyropy 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
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
5 changes: 5 additions & 0 deletions
5
migrations/026.do.add-daily-network-retrieval-stats-table.sql
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,5 @@ | ||
CREATE TABLE daily_network_retrieval_stats ( | ||
day DATE NOT NULL PRIMARY KEY, | ||
total INT NOT NULL, | ||
successful INT NOT NULL | ||
); |
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
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
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.
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.
If we agree to use a different name than "networkRetrieval", then we need to rename this property too.
See CheckerNetwork/spark-checker#132 (comment) and CheckerNetwork/spark-checker#132 (comment)
Plus, all other places that use the name "networkRetrieval" 😢