Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for IsPoolRebalancing (0.09 sec)

  1. cmd/erasure-server-pool-rebalance.go

    		return false
    	}
    	for _, ps := range r.PoolStats {
    		if ps.Participating && ps.Info.Status != rebalCompleted {
    			return true
    		}
    	}
    	return false
    }
    
    func (z *erasureServerPools) IsPoolRebalancing(poolIndex int) bool {
    	z.rebalMu.RLock()
    	defer z.rebalMu.RUnlock()
    
    	if r := z.rebalMeta; r != nil {
    		if !r.StoppedAt.IsZero() {
    			return false
    		}
    		ps := r.PoolStats[poolIndex]
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Thu Sep 04 20:47:24 UTC 2025
    - 28.9K bytes
    - Viewed (0)
Back to top