Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for rst (0.11 sec)

  1. cmd/site-replication-utils.go

    	sm.RLock()
    	defer sm.RUnlock()
    	rst, ok := sm.peerResyncMap[dID]
    	if !ok {
    		return nil
    	}
    	rs, ok := sm.resyncStatus[rst.resyncID]
    	if !ok {
    		return nil
    	}
    	m := madmin.SiteResyncMetrics{
    		CollectedAt:     rs.LastUpdate,
    		StartTime:       rs.StartTime,
    		LastUpdate:      rs.LastUpdate,
    		ResyncStatus:    rs.Status.String(),
    		ResyncID:        rst.resyncID,
    		DeplID:          rs.DeplID,
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 8.9K bytes
    - Viewed (1)
  2. cmd/bucket-replication-utils_gen.go

    				return
    			}
    		case "rdt":
    			z.ResyncBeforeDate, err = dc.ReadTime()
    			if err != nil {
    				err = msgp.WrapError(err, "ResyncBeforeDate")
    				return
    			}
    		case "rst":
    			{
    				var zb0002 int
    				zb0002, err = dc.ReadInt()
    				if err != nil {
    					err = msgp.WrapError(err, "ResyncStatus")
    					return
    				}
    				z.ResyncStatus = ResyncStatusType(zb0002)
    			}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Mar 21 17:21:35 GMT 2024
    - 61.1K bytes
    - Viewed (0)
  3. cmd/bucket-replication-utils.go

    	// ResyncBeforeDate - resync all objects created prior to this date
    	ResyncBeforeDate time.Time `json:"resyncBeforeDate" msg:"rdt"`
    	// Status of resync operation
    	ResyncStatus ResyncStatusType `json:"resyncStatus" msg:"rst"`
    	// Failed size in bytes
    	FailedSize int64 `json:"failedReplicationSize"  msg:"fs"`
    	// Total number of failed operations
    	FailedCount int64 `json:"failedReplicationCount"  msg:"frc"`
    	// Completed size in bytes
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 26.2K bytes
    - Viewed (0)
Back to top