2021-04-18 15:41:13 -04:00
|
|
|
// Copyright (c) 2015-2021 MinIO, Inc.
|
|
|
|
//
|
|
|
|
// This file is part of MinIO Object Storage stack
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2021-04-03 12:03:42 -04:00
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"sync"
|
|
|
|
"sync/atomic"
|
|
|
|
|
2021-06-01 17:59:40 -04:00
|
|
|
"github.com/minio/minio/internal/bucket/replication"
|
2021-04-03 12:03:42 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func (b *BucketReplicationStats) hasReplicationUsage() bool {
|
2021-05-31 23:26:52 -04:00
|
|
|
return b.FailedSize > 0 ||
|
2021-04-03 12:03:42 -04:00
|
|
|
b.ReplicatedSize > 0 ||
|
|
|
|
b.ReplicaSize > 0 ||
|
|
|
|
b.FailedCount > 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// ReplicationStats holds the global in-memory replication stats
|
|
|
|
type ReplicationStats struct {
|
2021-04-06 11:36:54 -04:00
|
|
|
Cache map[string]*BucketReplicationStats
|
2021-04-24 00:58:45 -04:00
|
|
|
UsageCache map[string]*BucketReplicationStats
|
|
|
|
sync.RWMutex
|
2021-04-03 12:03:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Delete deletes in-memory replication statistics for a bucket.
|
2021-04-04 18:34:33 -04:00
|
|
|
func (r *ReplicationStats) Delete(bucket string) {
|
2021-04-03 12:03:42 -04:00
|
|
|
if r == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
r.Lock()
|
|
|
|
defer r.Unlock()
|
|
|
|
delete(r.Cache, bucket)
|
2021-04-06 11:36:54 -04:00
|
|
|
delete(r.UsageCache, bucket)
|
|
|
|
|
2021-04-03 12:03:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update updates in-memory replication statistics with new values.
|
2021-04-04 18:34:33 -04:00
|
|
|
func (r *ReplicationStats) Update(bucket string, n int64, status, prevStatus replication.StatusType, opType replication.Type) {
|
2021-04-03 12:03:42 -04:00
|
|
|
if r == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
r.RLock()
|
|
|
|
b, ok := r.Cache[bucket]
|
|
|
|
if !ok {
|
|
|
|
b = &BucketReplicationStats{}
|
|
|
|
}
|
|
|
|
r.RUnlock()
|
|
|
|
switch status {
|
|
|
|
case replication.Completed:
|
|
|
|
switch prevStatus { // adjust counters based on previous state
|
|
|
|
case replication.Failed:
|
|
|
|
atomic.AddUint64(&b.FailedCount, ^uint64(0))
|
|
|
|
}
|
|
|
|
if opType == replication.ObjectReplicationType {
|
|
|
|
atomic.AddUint64(&b.ReplicatedSize, uint64(n))
|
|
|
|
switch prevStatus {
|
|
|
|
case replication.Failed:
|
|
|
|
atomic.AddUint64(&b.FailedSize, ^uint64(n-1))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case replication.Failed:
|
|
|
|
if opType == replication.ObjectReplicationType {
|
|
|
|
if prevStatus == replication.Pending {
|
|
|
|
atomic.AddUint64(&b.FailedSize, uint64(n))
|
|
|
|
atomic.AddUint64(&b.FailedCount, 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
case replication.Replica:
|
|
|
|
if opType == replication.ObjectReplicationType {
|
|
|
|
atomic.AddUint64(&b.ReplicaSize, uint64(n))
|
|
|
|
}
|
|
|
|
}
|
2021-04-06 11:36:54 -04:00
|
|
|
r.Lock()
|
|
|
|
r.Cache[bucket] = b
|
|
|
|
r.Unlock()
|
|
|
|
}
|
|
|
|
|
2021-04-06 14:32:52 -04:00
|
|
|
// GetInitialUsage get replication metrics available at the time of cluster initialization
|
2021-04-06 11:36:54 -04:00
|
|
|
func (r *ReplicationStats) GetInitialUsage(bucket string) BucketReplicationStats {
|
|
|
|
if r == nil {
|
|
|
|
return BucketReplicationStats{}
|
|
|
|
}
|
|
|
|
|
|
|
|
r.RLock()
|
|
|
|
defer r.RUnlock()
|
|
|
|
|
|
|
|
st, ok := r.UsageCache[bucket]
|
|
|
|
if !ok {
|
|
|
|
return BucketReplicationStats{}
|
|
|
|
}
|
|
|
|
return BucketReplicationStats{
|
|
|
|
FailedSize: atomic.LoadUint64(&st.FailedSize),
|
|
|
|
ReplicatedSize: atomic.LoadUint64(&st.ReplicatedSize),
|
|
|
|
ReplicaSize: atomic.LoadUint64(&st.ReplicaSize),
|
|
|
|
FailedCount: atomic.LoadUint64(&st.FailedCount),
|
|
|
|
}
|
2021-04-03 12:03:42 -04:00
|
|
|
}
|
|
|
|
|
2021-04-06 14:32:52 -04:00
|
|
|
// Get replication metrics for a bucket from this node since this node came up.
|
2021-04-03 12:03:42 -04:00
|
|
|
func (r *ReplicationStats) Get(bucket string) BucketReplicationStats {
|
|
|
|
if r == nil {
|
|
|
|
return BucketReplicationStats{}
|
|
|
|
}
|
|
|
|
|
|
|
|
r.RLock()
|
|
|
|
defer r.RUnlock()
|
2021-04-04 18:34:33 -04:00
|
|
|
|
2021-04-03 12:03:42 -04:00
|
|
|
st, ok := r.Cache[bucket]
|
|
|
|
if !ok {
|
|
|
|
return BucketReplicationStats{}
|
|
|
|
}
|
2021-04-04 18:34:33 -04:00
|
|
|
|
2021-04-03 12:03:42 -04:00
|
|
|
return BucketReplicationStats{
|
|
|
|
FailedSize: atomic.LoadUint64(&st.FailedSize),
|
|
|
|
ReplicatedSize: atomic.LoadUint64(&st.ReplicatedSize),
|
|
|
|
ReplicaSize: atomic.LoadUint64(&st.ReplicaSize),
|
|
|
|
FailedCount: atomic.LoadUint64(&st.FailedCount),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewReplicationStats initialize in-memory replication statistics
|
|
|
|
func NewReplicationStats(ctx context.Context, objectAPI ObjectLayer) *ReplicationStats {
|
|
|
|
st := &ReplicationStats{
|
2021-04-06 11:36:54 -04:00
|
|
|
Cache: make(map[string]*BucketReplicationStats),
|
|
|
|
UsageCache: make(map[string]*BucketReplicationStats),
|
2021-04-03 12:03:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
dataUsageInfo, err := loadDataUsageFromBackend(ctx, objectAPI)
|
|
|
|
if err != nil {
|
|
|
|
return st
|
|
|
|
}
|
|
|
|
|
|
|
|
// data usage has not captured any data yet.
|
|
|
|
if dataUsageInfo.LastUpdate.IsZero() {
|
|
|
|
return st
|
|
|
|
}
|
|
|
|
|
|
|
|
for bucket, usage := range dataUsageInfo.BucketsUsage {
|
|
|
|
b := &BucketReplicationStats{
|
|
|
|
FailedSize: usage.ReplicationFailedSize,
|
|
|
|
ReplicatedSize: usage.ReplicatedSize,
|
|
|
|
ReplicaSize: usage.ReplicaSize,
|
|
|
|
FailedCount: usage.ReplicationFailedCount,
|
|
|
|
}
|
|
|
|
if b.hasReplicationUsage() {
|
2021-04-06 11:36:54 -04:00
|
|
|
st.UsageCache[bucket] = b
|
2021-04-03 12:03:42 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return st
|
|
|
|
}
|