Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for initResync (0.25 sec)

  1. cmd/server-main.go

    			globalBucketMetadataSys.Init(GlobalContext, buckets, newObject)
    		})
    
    		// initialize replication resync state.
    		bootstrapTrace("initResync", func() {
    			globalReplicationPool.initResync(GlobalContext, buckets, newObject)
    		})
    
    		// Initialize site replication manager after bucket metadata
    		bootstrapTrace("globalSiteReplicationSys.Init", func() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (1)
  2. cmd/bucket-replication.go

    	}
    	p.resyncer.Lock()
    	delete(p.resyncer.statusMap, bucket)
    	defer p.resyncer.Unlock()
    
    	globalSiteResyncMetrics.deleteBucket(bucket)
    }
    
    // initResync - initializes bucket replication resync for all buckets.
    func (p *ReplicationPool) initResync(ctx context.Context, buckets []BucketInfo, objAPI ObjectLayer) error {
    	if objAPI == nil {
    		return errServerNotInitialized
    	}
    	// Load bucket metadata sys in background
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
Back to top