Spaces:
Running
Running
File size: 8,238 Bytes
b110593 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package cluster
import (
"bytes"
"encoding/binary"
"fmt"
"sort"
"sync"
"time"
"github.com/hashicorp/memberlist"
"github.com/sirupsen/logrus"
)
// _OpCode represents the type of supported operation
type _OpCode uint8
const (
// _ProtoVersion internal protocol version for exchanging messages
_ProtoVersion uint8 = 1
// _OpCodeDisk operation code for getting disk space
_OpCodeDisk _OpCode = 1
// _ProtoTTL used to decide when to update the cache
_ProtoTTL = time.Second * 8
)
// spaceMsg is used to notify other nodes about current disk usage
type spaceMsg struct {
header
DiskUsage
NodeLen uint8 // = len(Node) is required to marshal Node
Node string // node space
}
// header of an operation
type header struct {
// OpCode operation code
OpCode _OpCode
// ProtoVersion protocol we will speak
ProtoVersion uint8
}
// DiskUsage contains total and available space in B
type DiskUsage struct {
// Total disk space
Total uint64
// Total available space
Available uint64
}
// NodeInfo disk space
type NodeInfo struct {
DiskUsage
LastTimeMilli int64 // last update time in milliseconds
}
func (d *spaceMsg) marshal() (data []byte, err error) {
buf := bytes.NewBuffer(make([]byte, 0, 24+len(d.Node)))
if err := binary.Write(buf, binary.BigEndian, d.header); err != nil {
return nil, err
}
if err := binary.Write(buf, binary.BigEndian, d.DiskUsage); err != nil {
return nil, err
}
// code node name starting by its length
if err := buf.WriteByte(d.NodeLen); err != nil {
return nil, err
}
_, err = buf.Write([]byte(d.Node))
return buf.Bytes(), err
}
func (d *spaceMsg) unmarshal(data []byte) (err error) {
rd := bytes.NewReader(data)
if err = binary.Read(rd, binary.BigEndian, &d.header); err != nil {
return
}
if err = binary.Read(rd, binary.BigEndian, &d.DiskUsage); err != nil {
return
}
// decode node name start by its length
if d.NodeLen, err = rd.ReadByte(); err != nil {
return
}
begin := len(data) - rd.Len()
end := begin + int(d.NodeLen)
// make sure this version is backward compatible
if _ProtoVersion <= 1 && begin+int(d.NodeLen) != len(data) {
begin-- // since previous version doesn't encode the length
end = len(data)
d.NodeLen = uint8(end - begin)
}
d.Node = string(data[begin:end])
return nil
}
// delegate implements the memberList delegate interface
type delegate struct {
Name string
dataPath string
log logrus.FieldLogger
sync.Mutex
Cache map[string]NodeInfo
mutex sync.Mutex
hostInfo NodeInfo
}
func (d *delegate) setOwnSpace(x DiskUsage) {
d.mutex.Lock()
d.hostInfo = NodeInfo{DiskUsage: x, LastTimeMilli: time.Now().UnixMilli()}
d.mutex.Unlock()
}
func (d *delegate) ownInfo() NodeInfo {
d.mutex.Lock()
defer d.mutex.Unlock()
return d.hostInfo
}
// init must be called first to initialize the cache
func (d *delegate) init(diskSpace func(path string) (DiskUsage, error)) error {
d.Cache = make(map[string]NodeInfo, 32)
if diskSpace == nil {
return fmt.Errorf("function calculating disk space cannot be empty")
}
space, err := diskSpace(d.dataPath)
if err != nil {
return fmt.Errorf("disk_space: %w", err)
}
d.setOwnSpace(space)
d.set(d.Name, NodeInfo{space, time.Now().UnixMilli()}) // cache
// delegate remains alive throughout the entire program.
go d.updater(_ProtoTTL, time.Second+_ProtoTTL/3, diskSpace)
return nil
}
// NodeMeta is used to retrieve meta-data about the current node
// when broadcasting an alive message. It's length is limited to
// the given byte size. This metadata is available in the Node structure.
func (d *delegate) NodeMeta(limit int) (meta []byte) {
return nil
}
// LocalState is used for a TCP Push/Pull. This is sent to
// the remote side in addition to the membership information. Any
// data can be sent here. See MergeRemoteState as well. The `join`
// boolean indicates this is for a join instead of a push/pull.
func (d *delegate) LocalState(join bool) []byte {
var (
info = d.ownInfo()
err error
)
d.set(d.Name, info) // cache new value
x := spaceMsg{
header{
OpCode: _OpCodeDisk,
ProtoVersion: _ProtoVersion,
},
info.DiskUsage,
uint8(len(d.Name)),
d.Name,
}
bytes, err := x.marshal()
if err != nil {
d.log.WithField("action", "delegate.local_state.marshal").Error(err)
return nil
}
return bytes
}
// MergeRemoteState is invoked after a TCP Push/Pull. This is the
// state received from the remote side and is the result of the
// remote side's LocalState call. The 'join'
// boolean indicates this is for a join instead of a push/pull.
func (d *delegate) MergeRemoteState(data []byte, join bool) {
// Does operation match _OpCodeDisk
if _OpCode(data[0]) != _OpCodeDisk {
return
}
var x spaceMsg
if err := x.unmarshal(data); err != nil || x.Node == "" {
d.log.WithField("action", "delegate.merge_remote.unmarshal").
WithField("data", string(data)).Error(err)
return
}
info := NodeInfo{x.DiskUsage, time.Now().UnixMilli()}
d.set(x.Node, info)
}
func (d *delegate) NotifyMsg(data []byte) {}
func (d *delegate) GetBroadcasts(overhead, limit int) [][]byte {
return nil
}
// get returns info about about a specific node in the cluster
func (d *delegate) get(node string) (NodeInfo, bool) {
d.Lock()
defer d.Unlock()
x, ok := d.Cache[node]
return x, ok
}
func (d *delegate) set(node string, x NodeInfo) {
d.Lock()
defer d.Unlock()
d.Cache[node] = x
}
// delete key from the cache
func (d *delegate) delete(node string) {
d.Lock()
defer d.Unlock()
delete(d.Cache, node)
}
// sortCandidates by the amount of free space in descending order
//
// Two nodes are considered equivalent if the difference between their
// free spaces is less than 4KB.
// The free space is just an rough estimate of the actual amount.
// The Lower bound 4KB helps to mitigate the risk of selecting same set of nodes
// when selections happens concurrently on different initiator nodes.
func (d *delegate) sortCandidates(names []string) []string {
d.Lock()
defer d.Unlock()
m := d.Cache
sort.Slice(names, func(i, j int) bool {
return (m[names[j]].Available >> 12) < (m[names[i]].Available >> 12)
})
return names
}
// updater a function which updates node information periodically
func (d *delegate) updater(period, minPeriod time.Duration, du func(path string) (DiskUsage, error)) {
t := time.NewTicker(period)
defer t.Stop()
curTime := time.Now()
for range t.C {
if time.Since(curTime) < minPeriod { // too short
continue // wait for next cycle to avoid overwhelming the disk
}
space, err := du(d.dataPath)
if err != nil {
d.log.WithField("action", "delegate.local_state.disk_usage").Error(err)
} else {
d.setOwnSpace(space)
}
curTime = time.Now()
}
}
// events implement memberlist.EventDelegate interface
// EventDelegate is a simpler delegate that is used only to receive
// notifications about members joining and leaving. The methods in this
// delegate may be called by multiple goroutines, but never concurrently.
// This allows you to reason about ordering.
type events struct {
d *delegate
}
// NotifyJoin is invoked when a node is detected to have joined.
// The Node argument must not be modified.
func (e events) NotifyJoin(*memberlist.Node) {}
// NotifyLeave is invoked when a node is detected to have left.
// The Node argument must not be modified.
func (e events) NotifyLeave(node *memberlist.Node) {
e.d.delete(node.Name)
}
// NotifyUpdate is invoked when a node is detected to have
// updated, usually involving the meta data. The Node argument
// must not be modified.
func (e events) NotifyUpdate(*memberlist.Node) {}
|