Files
EdgeCommon/pkg/serverconfigs/schedulingconfigs/scheduling_hash.go

51 lines
1.0 KiB
Go
Raw Normal View History

2020-09-15 14:44:38 +08:00
package schedulingconfigs
2020-09-13 19:27:47 +08:00
import (
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
"github.com/iwind/TeaGo/maps"
"github.com/iwind/TeaGo/rands"
2020-09-13 19:27:47 +08:00
"hash/crc32"
)
// HashScheduling Hash调度算法
2020-09-13 19:27:47 +08:00
type HashScheduling struct {
Scheduling
count int
2020-09-13 19:27:47 +08:00
}
// Start 启动
2020-09-13 19:27:47 +08:00
func (this *HashScheduling) Start() {
this.count = len(this.Candidates)
2020-09-13 19:27:47 +08:00
}
// Next 获取下一个候选对象
2020-09-13 19:27:47 +08:00
func (this *HashScheduling) Next(call *shared.RequestCall) CandidateInterface {
if this.count == 0 {
return nil
}
if call == nil || call.Options == nil {
return this.Candidates[rands.Int(0, this.count-1)]
}
2020-09-13 19:27:47 +08:00
key := call.Options.GetString("key")
if call.Formatter != nil {
key = call.Formatter(key)
}
sum := crc32.ChecksumIEEE([]byte(key))
return this.Candidates[sum%uint32(this.count)]
2020-09-13 19:27:47 +08:00
}
// Summary 获取简要信息
2020-09-13 19:27:47 +08:00
func (this *HashScheduling) Summary() maps.Map {
return maps.Map{
"code": "hash",
"name": "Hash算法",
2020-09-15 14:44:38 +08:00
"description": "根据自定义的键值的Hash值分配源站",
2020-09-13 19:27:47 +08:00
"networks": []string{"http"},
}
}