2020-12-04 18:00:08 +05:30
|
|
|
/*
|
|
|
|
|
Copyright 2020 The OpenEBS Authors
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
package driver
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/openebs/zfs-localpv/pkg/builder/volbuilder"
|
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2020-12-28 19:00:52 +05:30
|
|
|
"strconv"
|
2020-12-04 18:00:08 +05:30
|
|
|
|
|
|
|
|
zfs "github.com/openebs/zfs-localpv/pkg/zfs"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// scheduling algorithm constants
|
|
|
|
|
const (
|
|
|
|
|
// pick the node where less volumes are provisioned for the given pool
|
|
|
|
|
VolumeWeighted = "VolumeWeighted"
|
2020-12-28 19:00:52 +05:30
|
|
|
|
|
|
|
|
// pick the node where total provisioned volumes have occupied less capacity from the given pool
|
|
|
|
|
// this will be the default scheduler when none provided
|
|
|
|
|
CapacityWeighted = "CapacityWeighted"
|
2020-12-04 18:00:08 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// getVolumeWeightedMap goes through all the pools on all the nodes
|
2020-12-28 19:00:52 +05:30
|
|
|
// and creates the node mapping of the volume for all the nodes.
|
2020-12-04 18:00:08 +05:30
|
|
|
// It returns a map which has nodes as key and volumes present
|
|
|
|
|
// on the nodes as corresponding value.
|
|
|
|
|
func getVolumeWeightedMap(pool string) (map[string]int64, error) {
|
|
|
|
|
nmap := map[string]int64{}
|
|
|
|
|
|
|
|
|
|
zvlist, err := volbuilder.NewKubeclient().
|
|
|
|
|
WithNamespace(zfs.OpenEBSNamespace).
|
|
|
|
|
List(metav1.ListOptions{})
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nmap, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// create the map of the volume count
|
|
|
|
|
// for the given pool
|
|
|
|
|
for _, zv := range zvlist.Items {
|
|
|
|
|
if zv.Spec.PoolName == pool {
|
|
|
|
|
nmap[zv.Spec.OwnerNodeID]++
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nmap, nil
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-28 19:00:52 +05:30
|
|
|
// getCapacityWeightedMap goes through all the pools on all the nodes
|
|
|
|
|
// and creates the node mapping of the capacity for all the nodes.
|
|
|
|
|
// It returns a map which has nodes as key and capacity provisioned
|
|
|
|
|
// on the nodes as corresponding value. The scheduler will use this map
|
|
|
|
|
// and picks the node which is less weighted.
|
|
|
|
|
func getCapacityWeightedMap(pool string) (map[string]int64, error) {
|
|
|
|
|
nmap := map[string]int64{}
|
|
|
|
|
|
|
|
|
|
zvlist, err := volbuilder.NewKubeclient().
|
|
|
|
|
WithNamespace(zfs.OpenEBSNamespace).
|
|
|
|
|
List(metav1.ListOptions{})
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
return nmap, err
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// create the map of the volume capacity
|
|
|
|
|
// for the given pool
|
|
|
|
|
for _, zv := range zvlist.Items {
|
|
|
|
|
if zv.Spec.PoolName == pool {
|
|
|
|
|
volsize, err := strconv.ParseInt(zv.Spec.Capacity, 10, 64)
|
|
|
|
|
if err == nil {
|
|
|
|
|
nmap[zv.Spec.OwnerNodeID] += volsize
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return nmap, nil
|
|
|
|
|
}
|
|
|
|
|
|
2020-12-04 18:00:08 +05:30
|
|
|
// getNodeMap returns the node mapping for the given scheduling algorithm
|
|
|
|
|
func getNodeMap(schd string, pool string) (map[string]int64, error) {
|
|
|
|
|
switch schd {
|
|
|
|
|
case VolumeWeighted:
|
|
|
|
|
return getVolumeWeightedMap(pool)
|
2020-12-28 19:00:52 +05:30
|
|
|
case CapacityWeighted:
|
|
|
|
|
return getCapacityWeightedMap(pool)
|
2020-12-04 18:00:08 +05:30
|
|
|
}
|
2020-12-28 19:00:52 +05:30
|
|
|
// return CapacityWeighted(default) if not specified
|
|
|
|
|
return getCapacityWeightedMap(pool)
|
2020-12-04 18:00:08 +05:30
|
|
|
}
|