-
Notifications
You must be signed in to change notification settings - Fork 83
fix(clp-package): Start garbage collector as part of the "all" and "controller" targets; Validate retention periods aren't configured when using the Presto query engine. #1205
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
Merged
Merged
Changes from 10 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
d5ffb33
Add garbage collector to a new components list
haiqi96 0f556b5
Rename and add to presto
haiqi96 71ba53f
Merge branch 'main' into fix
haiqi96 d9afb69
Disable garbage collection for Presto and add garbage collection to t…
haiqi96 7197b09
Fix
haiqi96 ad8d23a
Add warning message
haiqi96 e5da5a7
Merge branch 'main' into fix
haiqi96 bf73952
Revert unintended changes
haiqi96 fa84bbf
Merge branch 'fix' of https://github.com/haiqi96/clp_fork into fix
haiqi96 21e254d
Merge branch 'main' into fix
haiqi96 2bd23f0
fix naming
haiqi96 3a3f0b6
Merge branch 'fix' of https://github.com/haiqi96/clp_fork into fix
haiqi96 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
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.
💡 Verification agent
🧩 Analysis chain
Retention validation correctly blocks PRESTO + retention at startup; consider narrowing scope to results-cache retention.
This will fail fast when PRESTO is configured with a retention period, matching the stated validation. If archive retention (archives/streams) is safe to run with PRESTO, you may want to restrict the check to results-cache retention only to avoid over-blocking legitimate configs.
If you want to narrow the check, update the validator in general.py (see my suggestion there) and keep this call site unchanged.
To double-check the target/component wiring on this branch (so GC gets included under CONTROLLER and ALL), you can run:
🏁 Script executed:
Length of output: 27689
🏁 Script executed:
Length of output: 8972
Narrow PRESTO + retention validation to results-cache retention (fix required)
validate_retention_config currently rejects startup whenever any retention is configured AND package.query_engine == QueryEngine.PRESTO — this will block PRESTO even if only archive retention is set. Restrict the check to results-cache retention to avoid over-blocking.
Files to change
Suggested fix (replace the broad test with a results-cache specific check):
I verified:
🤖 Prompt for AI Agents