libi / dcron

轻量分布式定时任务库 a lightweight distributed job scheduler library
MIT License
422 stars 73 forks source link
consistent-hashing cron crontab distributed distributed-cron redis

Dcron

Language codecov Tests Go Report Card

简体中文 | English

a lightweight distributed job scheduler library based on redis or etcd

Theory

Use redis or etcd to sync the services list and the state of services. Use consistent-hash to select the node which can execute the task.

Why not use distributed-lock?

If use distributed-lock to implement it. I will depends on the system-time of each node. There are some problems when the system-time is not synchronous:

  1. If the task executing time is shorter than the system time, the task will be excuted again. (some node unlock after execution, but the lock will be locked by the other node which reach the execution time)

  2. Whatever there is only a little miss in system time, the most fast node will catch the lock in the first time. It will cause a thing that all the task will be executed only by the most fast node.

Features

Get Started

  1. Create redisDriver instance, set the ServiceName and initialize dcron. The ServiceName will defined the same task unit.
    redisCli := redis.NewClient(&redis.Options{
    Addr: DefaultRedisAddr,
    })
    drv := driver.NewRedisDriver(redisCli)
    dcron := NewDcron("server1", drv)
  2. Use cron-language to add task, you should set the TaskName, the TaskName is the primary-key of each task.
    dcron.AddFunc("test1","*/3 * * * *",func(){
    fmt.Println("execute test1 task",time.Now().Format("15:04:05"))
    })
  3. Begin the task
    
    // you can use Start() or Run() to start the dcron.
    // unblocking start.
    dcron.Start()

// blocking start. dcron.Run()


### Example
- [examples](examples/)
- [example_app](https://github.com/dxyinme/dcron_example_app)

### More configurations.

Dcron is based on https://github.com/robfig/cron, use `NewDcron` to initialize `Dcron`, the arg after the second argv will be passed to `cron`

For example, if you want to set the cron eval in second-level, you can use like that:
```golang
dcron := NewDcron("server1", drv,cron.WithSeconds())

Otherwise, you can sue NewDcronWithOption to initialize, to set the logger or others. Optional configuration can be referred to: https://github.com/libi/dcron/blob/master/option.go

ServiceName

The ServiceName is used to define the same set of tasks, which can be understood as the boundary of task allocation and scheduling.

Multiple nodes using the same service name will be considered as the same task group. Tasks in the same task group will be evenly distributed to each node in the group and will not be executed repeatedly.

Star history

Star History Chart

Thanks