Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for ReplicaModifications (0.07 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. docs/bucket/replication/README.md

          "Destination": {
            "Bucket": "arn:minio:replication:us-east-1:c5be6b16-769d-432a-9ef1-4567081f3566:destbucket",
            "StorageClass": "STANDARD"
          },
          "SourceSelectionCriteria": {
            "ReplicaModifications": {
              "Status": "Enabled"
            }
          }
        }
      ]
    }
    ```
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Tue Aug 12 18:20:36 GMT 2025
    - 18.3K bytes
    - Click Count (0)
  2. internal/bucket/replication/rule.go

    // replica modification sync is enabled.
    func (r Rule) MetadataReplicate(obj ObjectOpts) bool {
    	if !obj.Replica {
    		return true
    	}
    	return obj.Replica && r.SourceSelectionCriteria.ReplicaModifications.Status == Enabled
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 8.3K bytes
    - Click Count (0)
  3. cmd/site-replication.go

    				r.DeleteReplication.Status == sreplication.Disabled ||
    				r.ExistingObjectReplication.Status == sreplication.Disabled ||
    				r.SourceSelectionCriteria.ReplicaModifications.Status == sreplication.Disabled {
    				return false
    			}
    		}
    	}
    	return true
    }
    
    // isILMExpRuleReplicated returns true if count of replicated ILM Expiry rules matches total
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 184.8K bytes
    - Click Count (1)
Back to Top