Conversation
MaxAlex
approved these changes
Apr 7, 2026
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
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.
This PR adds some additional logging to
load_job_ids()andre_run_check(). Previously, onlypq_job_idwas logged, which tracks the highest job_id in existing parquet export file, leaving us with now way to retroactively check API data availability and less ability to troubleshoot. This PR does not touch any of the update logic, and logs fire off correctly when testing locally.Logging added to
load_job_ids:pq_job_id: highest job_id in existing parquet export fileapi_max_job_id: highest job_id seen from/countendpoint during this runmax_job_id: highest job_id actually downloadedstopped_early: if true,load_job_idsstopped early due to low disk space (compared tomin_disk_free_pct, currently set to60)Logging added to
re_run_check:remaining_job_count: jobs the API reports beyond what was downloadedapi_latest_job_id: highest job_id available from the API post-download