-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Summary
As an Ops Engineer
I want bucket replication
So that I can safely backup my data to other servers.
Context
Bucket parameters currently don't support much, it would be very useful if bucket replication conf could be provided.
Out of Scope
No response
Further links
- https://min.io/docs/minio/linux/administration/bucket-replication/enable-server-side-one-way-bucket-replication.html
- https://github.com/minio/minio/blob/master/docs/bucket/replication/README.md
Acceptance Criteria
No response
Implementation Ideas
A replication
key with custom config like
{
"Role" :"",
"Rules": [
{
"Status": "Enabled",
"Priority": 1,
"DeleteMarkerReplication": { "Status": "Disabled" },
"DeleteReplication": { "Status": "Disabled" },
"Filter" : {
"And": {
"Prefix": "Tax",
"Tags": [
{
"Key": "Year",
"Value": "2019"
},
{
"Key": "Company",
"Value": "AcmeCorp"
}
]
}
},
"Destination": {
"Bucket": "arn:minio:replication:us-east-1:c5be6b16-769d-432a-9ef1-4567081f3566:destbucket",
"StorageClass": "STANDARD"
},
"SourceSelectionCriteria": {
"ReplicaModifications": {
"Status": "Enabled"
}
}
}
]
}
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request