Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for ReplicaModifications (0.07 sec)

  1. internal/bucket/replication/rule_test.go

    			opts:           ObjectOpts{Name: "c1test", DeleteMarker: false, OpType: ObjectReplicationType, Replica: false}, // 1. Replica mod sync enabled; not...
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 4.6K bytes
    - Viewed (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
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 8.3K bytes
    - Viewed (0)
  3. 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"
            }
          }
        }
      ]
    }
    ```
    
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.3K bytes
    - Viewed (0)
  4. internal/bucket/replication/replication_test.go

    					DeleteMarkerReplication: DeleteMarkerReplication{Status: Enabled},
    					DeleteReplication:       DeleteReplication{Status: Enabled},
    					SourceSelectionCriteria: SourceSelectionCriteria{ReplicaModifications: ReplicaModifications{Status: Disabled}},
    				},
    			},
    		},
    	}
    	testCases := []struct {
    		opts           ObjectOpts
    		c              Config
    		expectedResult bool
    	}{
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 32.4K bytes
    - Viewed (0)
  5. 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
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Sun Sep 28 20:59:21 UTC 2025
    - 184.8K bytes
    - Viewed (1)
Back to top