mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 12:20:27 +08:00
164 lines
3.8 KiB
Go
164 lines
3.8 KiB
Go
// Copyright 2021 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package serverconfigs
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/schedulingconfigs"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
// SchedulingGroup 负载均衡分组
|
|
type SchedulingGroup struct {
|
|
Scheduling *SchedulingConfig `yaml:"scheduling" json:"scheduling"`
|
|
|
|
PrimaryOrigins []*OriginConfig
|
|
BackupOrigins []*OriginConfig
|
|
|
|
hasPrimaryOrigins bool
|
|
hasBackupOrigins bool
|
|
schedulingIsBackup bool
|
|
schedulingObject schedulingconfigs.SchedulingInterface
|
|
}
|
|
|
|
// Init 初始化
|
|
func (this *SchedulingGroup) Init() error {
|
|
this.hasPrimaryOrigins = len(this.PrimaryOrigins) > 0
|
|
this.hasBackupOrigins = len(this.BackupOrigins) > 0
|
|
|
|
if this.Scheduling == nil {
|
|
this.Scheduling = &SchedulingConfig{
|
|
Code: "random",
|
|
Options: maps.Map{},
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// NextOrigin 取得下一个可用源站
|
|
func (this *SchedulingGroup) NextOrigin(call *shared.RequestCall) *OriginConfig {
|
|
if this.schedulingObject == nil {
|
|
return nil
|
|
}
|
|
|
|
if this.Scheduling != nil && call != nil && call.Options != nil {
|
|
for k, v := range this.Scheduling.Options {
|
|
call.Options[k] = v
|
|
}
|
|
}
|
|
|
|
var candidate = this.schedulingObject.Next(call)
|
|
|
|
// 末了重置状态
|
|
defer func() {
|
|
if candidate == nil {
|
|
this.schedulingIsBackup = false
|
|
}
|
|
}()
|
|
|
|
if candidate == nil {
|
|
// 启用备用服务器
|
|
if !this.schedulingIsBackup {
|
|
this.SetupScheduling(true, true)
|
|
candidate = this.schedulingObject.Next(call)
|
|
if candidate == nil {
|
|
// 不检查主要源站
|
|
this.SetupScheduling(false, false)
|
|
candidate = this.schedulingObject.Next(call)
|
|
if candidate == nil {
|
|
// 不检查备用源站
|
|
this.SetupScheduling(true, false)
|
|
candidate = this.schedulingObject.Next(call)
|
|
if candidate == nil {
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if candidate == nil {
|
|
return nil
|
|
}
|
|
}
|
|
|
|
return candidate.(*OriginConfig)
|
|
}
|
|
|
|
// AnyOrigin 取下一个任意源站
|
|
func (this *SchedulingGroup) AnyOrigin(excludingOriginIds []int64) *OriginConfig {
|
|
for _, origin := range this.PrimaryOrigins {
|
|
if !origin.IsOn {
|
|
continue
|
|
}
|
|
if !this.containsInt64(excludingOriginIds, origin.Id) {
|
|
return origin
|
|
}
|
|
}
|
|
for _, origin := range this.BackupOrigins {
|
|
if !origin.IsOn {
|
|
continue
|
|
}
|
|
if !this.containsInt64(excludingOriginIds, origin.Id) {
|
|
return origin
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// SetupScheduling 设置调度算法
|
|
func (this *SchedulingGroup) SetupScheduling(isBackup bool, checkOk bool) {
|
|
// 如果只有一个源站,则快速返回,避免因为状态的改变而不停地转换
|
|
if checkOk {
|
|
if len(this.PrimaryOrigins) == 1 && len(this.BackupOrigins) == 0 && this.schedulingObject != nil {
|
|
return
|
|
}
|
|
}
|
|
|
|
this.schedulingIsBackup = isBackup
|
|
|
|
if this.Scheduling == nil {
|
|
this.schedulingObject = &schedulingconfigs.RandomScheduling{}
|
|
} else {
|
|
typeCode := this.Scheduling.Code
|
|
s := schedulingconfigs.FindSchedulingType(typeCode)
|
|
if s == nil {
|
|
this.Scheduling = nil
|
|
this.schedulingObject = &schedulingconfigs.RandomScheduling{}
|
|
} else {
|
|
this.schedulingObject = s["instance"].(schedulingconfigs.SchedulingInterface)
|
|
}
|
|
}
|
|
|
|
if !isBackup {
|
|
for _, origin := range this.PrimaryOrigins {
|
|
if origin.IsOn && (origin.IsOk || !checkOk) {
|
|
this.schedulingObject.Add(origin)
|
|
}
|
|
}
|
|
} else {
|
|
for _, origin := range this.BackupOrigins {
|
|
if origin.IsOn && (origin.IsOk || !checkOk) {
|
|
this.schedulingObject.Add(origin)
|
|
}
|
|
}
|
|
}
|
|
|
|
if !this.schedulingObject.HasCandidates() {
|
|
return
|
|
}
|
|
|
|
this.schedulingObject.Start()
|
|
}
|
|
|
|
// 判断是否包含int64
|
|
func (this *SchedulingGroup) containsInt64(originIds []int64, originId int64) bool {
|
|
for _, id := range originIds {
|
|
if id == originId {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|