-
Notifications
You must be signed in to change notification settings - Fork 61
fix(sweeper): move the scheduled task map to LiveStore port #1079
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
Dunsin-cyber
wants to merge
6
commits into
arkade-os:master
Choose a base branch
from
Dunsin-cyber:fix/sweeper-scheduled-tasks-shared-store
base: master
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 all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
e561855
feat(live-store): add ScheduledTasksStore for cross-instance dedup
Dunsin-cyber 68d0946
fix(sweeper): use shared ScheduledTasksStore for task dedup
Dunsin-cyber 1492090
fix(sweeper): prevent missed and duplicate sweeps across restarts
Dunsin-cyber ea70ffc
fix(sweeper): claim slot before running, release only after
Dunsin-cyber c5febd5
fix(live-store): size scheduled-task TTL by configured locktimes
Dunsin-cyber b6364be
fix: lint issue
Dunsin-cyber 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
50 changes: 50 additions & 0 deletions
50
internal/infrastructure/live-store/inmemory/scheduled_tasks.go
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,50 @@ | ||
| package inmemorylivestore | ||
|
|
||
| import ( | ||
| "context" | ||
| "sync" | ||
|
|
||
| "github.com/arkade-os/arkd/internal/core/ports" | ||
| ) | ||
|
|
||
| type scheduledTasksStore struct { | ||
| lock sync.Mutex | ||
| ids map[string]struct{} | ||
| } | ||
|
|
||
| func NewScheduledTasksStore() ports.ScheduledTasksStore { | ||
| return &scheduledTasksStore{ | ||
| ids: make(map[string]struct{}), | ||
| } | ||
| } | ||
|
|
||
| func (s *scheduledTasksStore) AddIfAbsent(_ context.Context, id string) (bool, error) { | ||
| s.lock.Lock() | ||
| defer s.lock.Unlock() | ||
| if _, ok := s.ids[id]; ok { | ||
| return false, nil | ||
| } | ||
| s.ids[id] = struct{}{} | ||
| return true, nil | ||
| } | ||
|
|
||
| func (s *scheduledTasksStore) Remove(_ context.Context, id string) error { | ||
| s.lock.Lock() | ||
| defer s.lock.Unlock() | ||
| delete(s.ids, id) | ||
| return nil | ||
| } | ||
|
|
||
| func (s *scheduledTasksStore) Has(_ context.Context, id string) (bool, error) { | ||
| s.lock.Lock() | ||
| defer s.lock.Unlock() | ||
| _, ok := s.ids[id] | ||
| return ok, nil | ||
| } | ||
|
|
||
| func (s *scheduledTasksStore) Clear(_ context.Context) error { | ||
| s.lock.Lock() | ||
| defer s.lock.Unlock() | ||
| s.ids = make(map[string]struct{}) | ||
| return nil | ||
| } |
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
Oops, something went wrong.
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.