Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for QueueReplicationHeal (0.21 sec)

  1. cmd/bucket-replication.go

    					Targets:                 tgtsMap,
    				}:
    				case <-ctx.Done():
    					continue
    				}
    			}
    		}
    	}()
    	return diffCh, nil
    }
    
    // QueueReplicationHeal is a wrapper for queueReplicationHeal
    func QueueReplicationHeal(ctx context.Context, bucket string, oi ObjectInfo, retryCount int) {
    	// ignore modtime zero objects
    	if oi.ModTime.IsZero() {
    		return
    	}
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  2. cmd/metacache-server-pool.go

    				if !evt.Action.DeleteRestored() {
    					continue
    				} // queue version for replication upon expired restored copies if needed.
    			}
    		}
    
    		queueReplicationHeal(ctx, o.Bucket, objInfo, o.Replication, 0)
    	}
    	return
    }
    
    func (z *erasureServerPools) listAndSave(ctx context.Context, o *listPathOptions) (entries metaCacheEntriesSorted, err error) {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 12.8K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    					w.Header()[xhttp.AmzVersionID] = []string{gr.ObjInfo.VersionID}
    					w.Header()[xhttp.AmzDeleteMarker] = []string{strconv.FormatBool(gr.ObjInfo.DeleteMarker)}
    				}
    				QueueReplicationHeal(ctx, bucket, gr.ObjInfo, 0)
    			}
    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    	defer gr.Close()
    
    	objInfo := gr.ObjInfo
    
    	if objInfo.UserTags != "" {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 125K bytes
    - Viewed (0)
  4. cmd/data-scanner.go

    func (i *scannerItem) healReplication(ctx context.Context, o ObjectLayer, oi ObjectInfo, sizeS *sizeSummary) {
    	if oi.VersionID == "" {
    		return
    	}
    	if i.replication.Config == nil {
    		return
    	}
    	roi := queueReplicationHeal(ctx, oi.Bucket, oi, i.replication, 0)
    	if oi.DeleteMarker || !oi.VersionPurgeStatus.Empty() {
    		return
    	}
    
    	if sizeS.replTargetStats == nil && len(roi.TargetStatuses) > 0 {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 47.4K bytes
    - Viewed (0)
Back to top