mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-10 11:31:58 +08:00
Rename poller to scheduler
This commit is contained in:
parent
49d6ab5df0
commit
fef5ae6d3f
@ -28,7 +28,7 @@ type Background struct {
|
|||||||
running bool
|
running bool
|
||||||
|
|
||||||
rdb *rdb.RDB
|
rdb *rdb.RDB
|
||||||
poller *poller
|
scheduler *scheduler
|
||||||
processor *processor
|
processor *processor
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -36,11 +36,11 @@ type Background struct {
|
|||||||
// given a redis configuration .
|
// given a redis configuration .
|
||||||
func NewBackground(numWorkers int, cfg *RedisConfig) *Background {
|
func NewBackground(numWorkers int, cfg *RedisConfig) *Background {
|
||||||
r := rdb.NewRDB(newRedisClient(cfg))
|
r := rdb.NewRDB(newRedisClient(cfg))
|
||||||
poller := newPoller(r, 5*time.Second)
|
scheduler := newScheduler(r, 5*time.Second)
|
||||||
processor := newProcessor(r, numWorkers, nil)
|
processor := newProcessor(r, numWorkers, nil)
|
||||||
return &Background{
|
return &Background{
|
||||||
rdb: r,
|
rdb: r,
|
||||||
poller: poller,
|
scheduler: scheduler,
|
||||||
processor: processor,
|
processor: processor,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -101,7 +101,7 @@ func (bg *Background) start(handler Handler) {
|
|||||||
bg.running = true
|
bg.running = true
|
||||||
bg.processor.handler = handler
|
bg.processor.handler = handler
|
||||||
|
|
||||||
bg.poller.start()
|
bg.scheduler.start()
|
||||||
bg.processor.start()
|
bg.processor.start()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -113,7 +113,7 @@ func (bg *Background) stop() {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
bg.poller.terminate()
|
bg.scheduler.terminate()
|
||||||
bg.processor.terminate()
|
bg.processor.terminate()
|
||||||
|
|
||||||
bg.rdb.Close()
|
bg.rdb.Close()
|
||||||
|
53
poller.go
53
poller.go
@ -1,53 +0,0 @@
|
|||||||
package asynq
|
|
||||||
|
|
||||||
import (
|
|
||||||
"log"
|
|
||||||
"time"
|
|
||||||
|
|
||||||
"github.com/hibiken/asynq/internal/rdb"
|
|
||||||
)
|
|
||||||
|
|
||||||
type poller struct {
|
|
||||||
rdb *rdb.RDB
|
|
||||||
|
|
||||||
// channel to communicate back to the long running "poller" goroutine.
|
|
||||||
done chan struct{}
|
|
||||||
|
|
||||||
// poll interval on average
|
|
||||||
avgInterval time.Duration
|
|
||||||
}
|
|
||||||
|
|
||||||
func newPoller(r *rdb.RDB, avgInterval time.Duration) *poller {
|
|
||||||
return &poller{
|
|
||||||
rdb: r,
|
|
||||||
done: make(chan struct{}),
|
|
||||||
avgInterval: avgInterval,
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *poller) terminate() {
|
|
||||||
log.Println("[INFO] Poller shutting down...")
|
|
||||||
// Signal the poller goroutine to stop polling.
|
|
||||||
p.done <- struct{}{}
|
|
||||||
}
|
|
||||||
|
|
||||||
// start starts the "poller" goroutine.
|
|
||||||
func (p *poller) start() {
|
|
||||||
go func() {
|
|
||||||
for {
|
|
||||||
select {
|
|
||||||
case <-p.done:
|
|
||||||
log.Println("[INFO] Poller done.")
|
|
||||||
return
|
|
||||||
case <-time.After(p.avgInterval):
|
|
||||||
p.exec()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
|
|
||||||
func (p *poller) exec() {
|
|
||||||
if err := p.rdb.CheckAndEnqueue(); err != nil {
|
|
||||||
log.Printf("[ERROR] could not forward scheduled tasks: %v\n", err)
|
|
||||||
}
|
|
||||||
}
|
|
53
scheduler.go
Normal file
53
scheduler.go
Normal file
@ -0,0 +1,53 @@
|
|||||||
|
package asynq
|
||||||
|
|
||||||
|
import (
|
||||||
|
"log"
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/hibiken/asynq/internal/rdb"
|
||||||
|
)
|
||||||
|
|
||||||
|
type scheduler struct {
|
||||||
|
rdb *rdb.RDB
|
||||||
|
|
||||||
|
// channel to communicate back to the long running "scheduler" goroutine.
|
||||||
|
done chan struct{}
|
||||||
|
|
||||||
|
// poll interval on average
|
||||||
|
avgInterval time.Duration
|
||||||
|
}
|
||||||
|
|
||||||
|
func newScheduler(r *rdb.RDB, avgInterval time.Duration) *scheduler {
|
||||||
|
return &scheduler{
|
||||||
|
rdb: r,
|
||||||
|
done: make(chan struct{}),
|
||||||
|
avgInterval: avgInterval,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *scheduler) terminate() {
|
||||||
|
log.Println("[INFO] Scheduler shutting down...")
|
||||||
|
// Signal the scheduler goroutine to stop polling.
|
||||||
|
s.done <- struct{}{}
|
||||||
|
}
|
||||||
|
|
||||||
|
// start starts the "scheduler" goroutine.
|
||||||
|
func (s *scheduler) start() {
|
||||||
|
go func() {
|
||||||
|
for {
|
||||||
|
select {
|
||||||
|
case <-s.done:
|
||||||
|
log.Println("[INFO] Scheduler done.")
|
||||||
|
return
|
||||||
|
case <-time.After(s.avgInterval):
|
||||||
|
s.exec()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (s *scheduler) exec() {
|
||||||
|
if err := s.rdb.CheckAndEnqueue(); err != nil {
|
||||||
|
log.Printf("[ERROR] could not forward scheduled tasks: %v\n", err)
|
||||||
|
}
|
||||||
|
}
|
@ -10,7 +10,7 @@ import (
|
|||||||
"github.com/hibiken/asynq/internal/rdb"
|
"github.com/hibiken/asynq/internal/rdb"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestPoller(t *testing.T) {
|
func TestScheduler(t *testing.T) {
|
||||||
type scheduledTask struct {
|
type scheduledTask struct {
|
||||||
msg *base.TaskMessage
|
msg *base.TaskMessage
|
||||||
processAt time.Time
|
processAt time.Time
|
||||||
@ -18,7 +18,7 @@ func TestPoller(t *testing.T) {
|
|||||||
r := setup(t)
|
r := setup(t)
|
||||||
rdbClient := rdb.NewRDB(r)
|
rdbClient := rdb.NewRDB(r)
|
||||||
const pollInterval = time.Second
|
const pollInterval = time.Second
|
||||||
p := newPoller(rdbClient, pollInterval)
|
s := newScheduler(rdbClient, pollInterval)
|
||||||
t1 := randomTask("gen_thumbnail", "default", nil)
|
t1 := randomTask("gen_thumbnail", "default", nil)
|
||||||
t2 := randomTask("send_email", "default", nil)
|
t2 := randomTask("send_email", "default", nil)
|
||||||
t3 := randomTask("reindex", "default", nil)
|
t3 := randomTask("reindex", "default", nil)
|
||||||
@ -92,26 +92,26 @@ func TestPoller(t *testing.T) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
p.start()
|
s.start()
|
||||||
time.Sleep(tc.wait)
|
time.Sleep(tc.wait)
|
||||||
p.terminate()
|
s.terminate()
|
||||||
|
|
||||||
gotScheduledRaw := r.ZRange(base.ScheduledQueue, 0, -1).Val()
|
gotScheduledRaw := r.ZRange(base.ScheduledQueue, 0, -1).Val()
|
||||||
gotScheduled := mustUnmarshalSlice(t, gotScheduledRaw)
|
gotScheduled := mustUnmarshalSlice(t, gotScheduledRaw)
|
||||||
if diff := cmp.Diff(tc.wantScheduled, gotScheduled, sortMsgOpt); diff != "" {
|
if diff := cmp.Diff(tc.wantScheduled, gotScheduled, sortMsgOpt); diff != "" {
|
||||||
t.Errorf("mismatch found in %q after running poller: (-want, +got)\n%s", base.ScheduledQueue, diff)
|
t.Errorf("mismatch found in %q after running scheduler: (-want, +got)\n%s", base.ScheduledQueue, diff)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotRetryRaw := r.ZRange(base.RetryQueue, 0, -1).Val()
|
gotRetryRaw := r.ZRange(base.RetryQueue, 0, -1).Val()
|
||||||
gotRetry := mustUnmarshalSlice(t, gotRetryRaw)
|
gotRetry := mustUnmarshalSlice(t, gotRetryRaw)
|
||||||
if diff := cmp.Diff(tc.wantRetry, gotRetry, sortMsgOpt); diff != "" {
|
if diff := cmp.Diff(tc.wantRetry, gotRetry, sortMsgOpt); diff != "" {
|
||||||
t.Errorf("mismatch found in %q after running poller: (-want, +got)\n%s", base.RetryQueue, diff)
|
t.Errorf("mismatch found in %q after running scheduler: (-want, +got)\n%s", base.RetryQueue, diff)
|
||||||
}
|
}
|
||||||
|
|
||||||
gotQueueRaw := r.LRange(base.DefaultQueue, 0, -1).Val()
|
gotQueueRaw := r.LRange(base.DefaultQueue, 0, -1).Val()
|
||||||
gotQueue := mustUnmarshalSlice(t, gotQueueRaw)
|
gotQueue := mustUnmarshalSlice(t, gotQueueRaw)
|
||||||
if diff := cmp.Diff(tc.wantQueue, gotQueue, sortMsgOpt); diff != "" {
|
if diff := cmp.Diff(tc.wantQueue, gotQueue, sortMsgOpt); diff != "" {
|
||||||
t.Errorf("mismatch found in %q after running poller: (-want, +got)\n%s", base.DefaultQueue, diff)
|
t.Errorf("mismatch found in %q after running scheduler: (-want, +got)\n%s", base.DefaultQueue, diff)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user