-
Notifications
You must be signed in to change notification settings - Fork 69
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 2 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
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
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
43 changes: 43 additions & 0 deletions
43
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,43 @@ | ||
| 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 | ||
| } |
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
43 changes: 43 additions & 0 deletions
43
internal/infrastructure/live-store/redis/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,43 @@ | ||
| package redislivestore | ||
|
|
||
| import ( | ||
| "context" | ||
| "fmt" | ||
|
|
||
| "github.com/arkade-os/arkd/internal/core/ports" | ||
| "github.com/redis/go-redis/v9" | ||
| ) | ||
|
|
||
|
|
||
| type scheduledTasksStore struct { | ||
| rdb *redis.Client | ||
| } | ||
|
|
||
| func NewScheduledTasksStore(rdb *redis.Client) ports.ScheduledTasksStore { | ||
| return &scheduledTasksStore{rdb: rdb} | ||
| } | ||
|
|
||
| func (s *scheduledTasksStore) AddIfAbsent(ctx context.Context, id string) (bool, error) { | ||
| // SETNX is atomic on the Redis server: returns true iff this call set | ||
| // the key. Multiple arkd processes racing to claim the same task id | ||
| // will see exactly one true and the rest false. | ||
| return s.rdb.SetNX(ctx, scheduledTaskKey(id), "1", 0).Result() | ||
| } | ||
|
|
||
| func (s *scheduledTasksStore) Remove(ctx context.Context, id string) error { | ||
| // Del returns the number of keys removed; we don't care if it was 0 | ||
| // (Remove is idempotent per the interface contract). | ||
| return s.rdb.Del(ctx, scheduledTaskKey(id)).Err() | ||
| } | ||
|
|
||
| func (s *scheduledTasksStore) Has(ctx context.Context, id string) (bool, error) { | ||
| n, err := s.rdb.Exists(ctx, scheduledTaskKey(id)).Result() | ||
| if err != nil { | ||
| return false, err | ||
| } | ||
| return n > 0, nil | ||
| } | ||
|
|
||
| func scheduledTaskKey(id string) string { | ||
| return fmt.Sprintf("%s:%s", scheduledTaskKeyPrefix, id) | ||
| } | ||
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.