-
Notifications
You must be signed in to change notification settings - Fork 41
feat: add TTL-based cleanup strategy for DatabaseTriggers collection #464
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
NiveditJain
merged 13 commits into
exospherehost:main
from
spa-raj:add-trigger-cleanup-strategy
Oct 22, 2025
Merged
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
c20ec6a
feat: add TTL-based cleanup strategy for DatabaseTriggers collection
spa-raj 16434a6
perf: optimize settings access and fix timezone handling for TTL
spa-raj 5a9893a
docs: add docstring to mark_as_cancelled and improve test coverage
spa-raj 63665b8
Removed Cancelled state from partial index
spa-raj b1a9279
refactor: update trigger status filtering and add expiration logic
NiveditJain 094dd43
chore: update codespell ignore words list
NiveditJain 6dad1a7
nin->in
NiveditJain 021e4d5
fix: update trigger retention hours to 720
NiveditJain f1362e7
docs: add TRIGGER_WORKERS and TRIGGER_RETENTION_HOURS to state manage…
NiveditJain 8831b5b
feat: add initialization tasks for server startup
NiveditJain 0f7098a
feat: enhance create_next_triggers with expiration logic
NiveditJain 8af1c5d
docs: update MongoDB database name in state manager setup
NiveditJain bbcb7b0
fix: update trigger retention hours in tests and settings
NiveditJain 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
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,4 +14,5 @@ YML | |
| SDK | ||
| S3 | ||
| Kusto | ||
| NotIn | ||
| NotIn | ||
| nin | ||
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
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,20 @@ | ||
| # tasks to run when the server starts | ||
| from app.models.db.trigger import DatabaseTriggers | ||
| from app.models.trigger_models import TriggerStatusEnum | ||
| import asyncio | ||
|
|
||
| async def delete_old_triggers(): | ||
| await DatabaseTriggers.get_pymongo_collection().delete_many( | ||
| { | ||
| "trigger_status": { | ||
| "$in": [TriggerStatusEnum.TRIGGERED, TriggerStatusEnum.FAILED] | ||
| }, | ||
| "expires_at": None | ||
| } | ||
| ) | ||
NiveditJain marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| async def init_tasks(): | ||
| await asyncio.gather( | ||
| *[ | ||
| delete_old_triggers() | ||
| ]) | ||
NiveditJain marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.