You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gojobs/etcd.go

65 lines
1.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

package gojobs
import (
"go.etcd.io/etcd/client/v3"
"time"
)
// EtcdConfig etcd配置
type EtcdConfig struct {
Endpoints []string // 接口 []string{"http://127.0.0.1:2379"}
DialTimeout time.Duration // time.Second * 5
LocalIP string // 本机IP
Username string // 用户名
Password string // 密码
CustomDirectory string // 自定义目录,后面不需要/
Debug bool // 是否打印
}
// Etcd etcd
type Etcd struct {
EtcdConfig // 配置
Client *clientv3.Client // 驱动
Kv clientv3.KV // kv API子集
Lease clientv3.Lease // lease租约对象
leaseId clientv3.LeaseID // 租约编号
}
// Close 关闭
func (e Etcd) Close() {
e.Client.Close()
}
const (
// JobSaveDir 定时任务任务保存目录
JobSaveDir = "/cron/jobs/"
// JobWorkerDir 服务注册目录
JobWorkerDir = "/cron/workers/"
)
func getJobSaveDir(e Etcd) string {
if e.CustomDirectory == "" {
return JobSaveDir
} else {
return JobSaveDir + e.CustomDirectory + "/"
}
}
func getJobWorkerDir(e Etcd) string {
if e.CustomDirectory == "" {
return JobWorkerDir
} else {
return JobWorkerDir + e.CustomDirectory + "/"
}
}
// GetWatchKey 监听的key
func (e Etcd) GetWatchKey() string {
return getJobSaveDir(e) + e.LocalIP
}
// IssueWatchKey 下发的key
func (e Etcd) IssueWatchKey(ip string) string {
return getJobSaveDir(e) + ip
}