mirror of https://github.com/k3s-io/k3s
104 lines
2.8 KiB
Go
104 lines
2.8 KiB
Go
/*
|
|
Copyright 2014 Google Inc. All rights reserved.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
// RoundRobin Loadbalancer
|
|
|
|
package proxy
|
|
|
|
import (
|
|
"errors"
|
|
"log"
|
|
"net"
|
|
"reflect"
|
|
"strconv"
|
|
"strings"
|
|
"sync"
|
|
|
|
"github.com/GoogleCloudPlatform/kubernetes/pkg/api"
|
|
)
|
|
|
|
type LoadBalancerRR struct {
|
|
lock sync.RWMutex
|
|
endpointsMap map[string][]string
|
|
rrIndex map[string]int
|
|
}
|
|
|
|
func NewLoadBalancerRR() *LoadBalancerRR {
|
|
return &LoadBalancerRR{endpointsMap: make(map[string][]string), rrIndex: make(map[string]int)}
|
|
}
|
|
|
|
func (impl LoadBalancerRR) LoadBalance(service string, srcAddr net.Addr) (string, error) {
|
|
impl.lock.RLock()
|
|
endpoints, exists := impl.endpointsMap[service]
|
|
index := impl.rrIndex[service]
|
|
impl.lock.RUnlock()
|
|
if exists == false {
|
|
return "", errors.New("no service entry for:" + service)
|
|
}
|
|
if len(endpoints) == 0 {
|
|
return "", errors.New("no endpoints for: " + service)
|
|
}
|
|
endpoint := endpoints[index]
|
|
impl.rrIndex[service] = (index + 1) % len(endpoints)
|
|
return endpoint, nil
|
|
}
|
|
|
|
func (impl LoadBalancerRR) IsValid(spec string) bool {
|
|
index := strings.Index(spec, ":")
|
|
if index == -1 {
|
|
return false
|
|
}
|
|
value, err := strconv.Atoi(spec[index+1:])
|
|
if err != nil {
|
|
return false
|
|
}
|
|
return value > 0
|
|
}
|
|
|
|
func (impl LoadBalancerRR) FilterValidEndpoints(endpoints []string) []string {
|
|
var result []string
|
|
for _, spec := range endpoints {
|
|
if impl.IsValid(spec) {
|
|
result = append(result, spec)
|
|
}
|
|
}
|
|
return result
|
|
}
|
|
|
|
func (impl LoadBalancerRR) OnUpdate(endpoints []api.Endpoints) {
|
|
tmp := make(map[string]bool)
|
|
impl.lock.Lock()
|
|
defer impl.lock.Unlock()
|
|
// First update / add all new endpoints for services.
|
|
for _, value := range endpoints {
|
|
existingEndpoints, exists := impl.endpointsMap[value.Name]
|
|
if !exists || !reflect.DeepEqual(value.Endpoints, existingEndpoints) {
|
|
log.Printf("LoadBalancerRR: Setting endpoints for %s to %+v", value.Name, value.Endpoints)
|
|
impl.endpointsMap[value.Name] = impl.FilterValidEndpoints(value.Endpoints)
|
|
// Start RR from the beginning if added or updated.
|
|
impl.rrIndex[value.Name] = 0
|
|
}
|
|
tmp[value.Name] = true
|
|
}
|
|
// Then remove any endpoints no longer relevant
|
|
for key, value := range impl.endpointsMap {
|
|
_, exists := tmp[key]
|
|
if !exists {
|
|
log.Printf("LoadBalancerRR: Removing endpoints for %s -> %+v", key, value)
|
|
delete(impl.endpointsMap, key)
|
|
}
|
|
}
|
|
}
|