Add checkpoint for alpine and maven#835
Open
malladinagarjuna2 wants to merge 1 commit intoaboutcode-org:mainfrom
Open
Add checkpoint for alpine and maven#835malladinagarjuna2 wants to merge 1 commit intoaboutcode-org:mainfrom
malladinagarjuna2 wants to merge 1 commit intoaboutcode-org:mainfrom
Conversation
a9e6b05 to
63fefef
Compare
Author
|
repected maintainers kindly review my pr |
Author
|
@JonoYang kindly review |
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.
fixes #740
what I did ?
As Both Alpine and Maven pipelines time out after 6 hours when collecting package URLs. When interrupted, they restart from scratch, losing all progress.
Added checkpoint to save/resume support so each pipeline can pick
up where it left off.
in Maven: compute SHA-256 checksum of the index file to detect changes between runs. Track the last processed PURL for resume within the index. If the checksum differs on restart, it starts again
in Alpine: track the set of new APKINDEX URLs for new resume at the per-URL level. It skips already-processed URLs on restart.
Added missing taggit to INSTALLED_APPS which is required by scanpipe migrations and adds default values for VULNERABLECODE, MATCHCODEIO, and PURLDB settings.
Fixxed pre-existing test issues in swift and conan tests where leftover mock_write parameters and incorrect
assertions caused failures.
Regenerated expected_packages.json for alpine tests to match current output.
Add new test fixtures and tests for checkpoint logic in both Maven and Alpine pipelines.