mirror of
https://github.com/cubefs/cubefs.git
synced 2026-08-02 02:00:56 +00:00
155 lines
4.4 KiB
Go
155 lines
4.4 KiB
Go
// Copyright 2018 The Chubao 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 master
|
|
|
|
import (
|
|
"math/rand"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/cubefs/cubefs/proto"
|
|
)
|
|
|
|
// MetaNode defines the structure of a meta node
|
|
type MetaNode struct {
|
|
ID uint64
|
|
Addr string
|
|
IsActive bool
|
|
Sender *AdminTaskManager `graphql:"-"`
|
|
ZoneName string `json:"Zone"`
|
|
MaxMemAvailWeight uint64 `json:"MaxMemAvailWeight"`
|
|
Total uint64 `json:"TotalWeight"`
|
|
Used uint64 `json:"UsedWeight"`
|
|
Ratio float64
|
|
SelectCount uint64
|
|
Carry float64
|
|
Threshold float32
|
|
ReportTime time.Time
|
|
metaPartitionInfos []*proto.MetaPartitionReport
|
|
MetaPartitionCount int
|
|
NodeSetID uint64
|
|
sync.RWMutex `graphql:"-"`
|
|
ToBeOffline bool
|
|
PersistenceMetaPartitions []uint64
|
|
RdOnly bool
|
|
MigrateLock sync.RWMutex
|
|
}
|
|
|
|
func newMetaNode(addr, zoneName, clusterID string) (node *MetaNode) {
|
|
return &MetaNode{
|
|
Addr: addr,
|
|
ZoneName: zoneName,
|
|
Sender: newAdminTaskManager(addr, clusterID),
|
|
Carry: rand.Float64(),
|
|
}
|
|
}
|
|
|
|
func (metaNode *MetaNode) clean() {
|
|
metaNode.Sender.exitCh <- struct{}{}
|
|
}
|
|
|
|
func (metaNode *MetaNode) GetID() uint64 {
|
|
metaNode.RLock()
|
|
defer metaNode.RUnlock()
|
|
return metaNode.ID
|
|
}
|
|
|
|
func (metaNode *MetaNode) GetAddr() string {
|
|
metaNode.RLock()
|
|
defer metaNode.RUnlock()
|
|
return metaNode.Addr
|
|
}
|
|
|
|
// SetCarry implements the Node interface
|
|
func (metaNode *MetaNode) SetCarry(carry float64) {
|
|
metaNode.Lock()
|
|
defer metaNode.Unlock()
|
|
metaNode.Carry = carry
|
|
}
|
|
|
|
// SelectNodeForWrite implements the Node interface
|
|
func (metaNode *MetaNode) SelectNodeForWrite() {
|
|
metaNode.Lock()
|
|
defer metaNode.Unlock()
|
|
metaNode.SelectCount++
|
|
metaNode.Carry = metaNode.Carry - 1.0
|
|
}
|
|
|
|
func (metaNode *MetaNode) isWritable() (ok bool) {
|
|
metaNode.RLock()
|
|
defer metaNode.RUnlock()
|
|
if metaNode.IsActive && metaNode.MaxMemAvailWeight > gConfig.metaNodeReservedMem &&
|
|
!metaNode.reachesThreshold() && metaNode.MetaPartitionCount < defaultMaxMetaPartitionCountOnEachNode &&
|
|
!metaNode.RdOnly {
|
|
ok = true
|
|
}
|
|
return
|
|
}
|
|
|
|
// A carry node is the meta node whose carry is greater than one.
|
|
func (metaNode *MetaNode) isCarryNode() (ok bool) {
|
|
metaNode.RLock()
|
|
defer metaNode.RUnlock()
|
|
return metaNode.Carry >= 1
|
|
}
|
|
|
|
func (metaNode *MetaNode) setNodeActive() {
|
|
metaNode.Lock()
|
|
defer metaNode.Unlock()
|
|
metaNode.ReportTime = time.Now()
|
|
metaNode.IsActive = true
|
|
}
|
|
|
|
func (metaNode *MetaNode) updateMetric(resp *proto.MetaNodeHeartbeatResponse, threshold float32) {
|
|
metaNode.Lock()
|
|
defer metaNode.Unlock()
|
|
metaNode.metaPartitionInfos = resp.MetaPartitionReports
|
|
metaNode.MetaPartitionCount = len(metaNode.metaPartitionInfos)
|
|
metaNode.Total = resp.Total
|
|
metaNode.Used = resp.Used
|
|
if resp.Total == 0 {
|
|
metaNode.Ratio = 0
|
|
} else {
|
|
metaNode.Ratio = float64(resp.Used) / float64(resp.Total)
|
|
}
|
|
metaNode.MaxMemAvailWeight = resp.Total - resp.Used
|
|
metaNode.ZoneName = resp.ZoneName
|
|
metaNode.Threshold = threshold
|
|
}
|
|
|
|
func (metaNode *MetaNode) reachesThreshold() bool {
|
|
if metaNode.Threshold <= 0 {
|
|
metaNode.Threshold = defaultMetaPartitionMemUsageThreshold
|
|
}
|
|
return float32(float64(metaNode.Used)/float64(metaNode.Total)) > metaNode.Threshold
|
|
}
|
|
|
|
func (metaNode *MetaNode) createHeartbeatTask(masterAddr string) (task *proto.AdminTask) {
|
|
request := &proto.HeartBeatRequest{
|
|
CurrTime: time.Now().Unix(),
|
|
MasterAddr: masterAddr,
|
|
}
|
|
task = proto.NewAdminTask(proto.OpMetaNodeHeartbeat, metaNode.Addr, request)
|
|
return
|
|
}
|
|
|
|
func (metaNode *MetaNode) checkHeartbeat() {
|
|
metaNode.Lock()
|
|
defer metaNode.Unlock()
|
|
if time.Since(metaNode.ReportTime) > time.Second*time.Duration(defaultNodeTimeOutSec) {
|
|
metaNode.IsActive = false
|
|
}
|
|
}
|