Skip to content

Commit

Permalink
Modify the salvageRevisionCounterDisabledReplicas logic
Browse files Browse the repository at this point in the history
The old logic is that:
1. Filter replica candidates to keep only replicas which was modified
   within the last 5 seconds from the last modified replica
2. Then filter to keep only replicas with head size equals to the biggest
   one
3. Then pick a random replica from the set

The new logic:
1. Filter replica candiates to keep only replicas which was modified
   within the last 5 seconds from the last modified replica
2. Then filter to keep only replicas with head size equal to the biggest
   one
3. Then pick the last modified replica from the set

longhorn-8659
longhorn-8563

Signed-off-by: Phan Le <[email protected]>
  • Loading branch information
PhanLe1010 committed May 29, 2024
1 parent 709c181 commit 0397a72
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
38 changes: 18 additions & 20 deletions pkg/controller/control.go
Original file line number Diff line number Diff line change
Expand Up @@ -606,54 +606,52 @@ func (c *Controller) checkReplicaRevCounterSettingMatch() error {
return nil
}

// salvageRevisionCounterDisabledReplicas will find best replica
// salvageRevisionCounterDisabledReplicas will find the best replica
// for salvage recovering, based on lastModifyTime and HeadFileSize.
func (c *Controller) salvageRevisionCounterDisabledReplicas() error {
replicaCandidates := make(map[types.Replica]types.ReplicaSalvageInfo)
var lastModifyTime int64
var replicaCandidates []*types.ReplicaSalvageInfo
var lastModifyTime time.Time
for _, r := range c.replicas {
if r.Mode == types.ERR {
continue
}
repLastModifyTime, err := c.backend.backends[r.Address].backend.GetLastModifyTime()
repLastModifyTimeInt, err := c.backend.backends[r.Address].backend.GetLastModifyTime()
if err != nil {
return err
}
repLastModifyTime := time.Unix(0, repLastModifyTimeInt)

repHeadFileSize, err := c.backend.backends[r.Address].backend.GetHeadFileSize()
if err != nil {
return err
}

replicaCandidates[r] = types.ReplicaSalvageInfo{
replicaCandidates = append(replicaCandidates, &types.ReplicaSalvageInfo{
Address: r.Address,
LastModifyTime: repLastModifyTime,
HeadFileSize: repHeadFileSize,
}
if lastModifyTime == 0 ||
repLastModifyTime > lastModifyTime {
})
if lastModifyTime.IsZero() || repLastModifyTime.After(lastModifyTime) {
lastModifyTime = repLastModifyTime
}
}

if len(replicaCandidates) == 0 {
return fmt.Errorf("cannot find any replica for salvage")
}
var bestCandidate types.Replica
lastTime := time.Unix(0, lastModifyTime)
var largestSize int64
for r, salvageReplica := range replicaCandidates {
t := time.Unix(0, salvageReplica.LastModifyTime)
// Any replica within 5 seconds before lastModifyTime
// can be good replica.
if t.Add(lastModifyCheckPeriod).After(lastTime) {
if salvageReplica.HeadFileSize >= largestSize {
bestCandidate = r
largestSize = salvageReplica.HeadFileSize
var bestCandidate *types.ReplicaSalvageInfo
for _, salvageReplica := range replicaCandidates {
if salvageReplica.LastModifyTime.Add(lastModifyCheckPeriod).After(lastModifyTime) {
if bestCandidate == nil ||
salvageReplica.HeadFileSize > bestCandidate.HeadFileSize ||
(salvageReplica.HeadFileSize == bestCandidate.HeadFileSize &&
salvageReplica.LastModifyTime.After(bestCandidate.LastModifyTime)) {
bestCandidate = salvageReplica
}
}
}

if bestCandidate == (types.Replica{}) {
if bestCandidate == nil {
return fmt.Errorf("BUG: Should find one candidate for salvage")
}

Expand Down
3 changes: 2 additions & 1 deletion pkg/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,8 @@ type Replica struct {
}

type ReplicaSalvageInfo struct {
LastModifyTime int64
Address string
LastModifyTime time.Time
HeadFileSize int64
}

Expand Down

0 comments on commit 0397a72

Please sign in to comment.