-
- Veeam Legend
- Posts: 229
- Liked: 37 times
- Joined: Nov 04, 2009 2:08 pm
- Contact:
Immutability with on-prem S3 storage
As far as I get it, minio should support the S3 object lock feature:
https://docs.min.io/docs/minio-client-c ... guide#lock
Could that be leveraged by the immutability function within 9.5 U4?
Regards,
Mike
https://docs.min.io/docs/minio-client-c ... guide#lock
Could that be leveraged by the immutability function within 9.5 U4?
Regards,
Mike
-
- Veteran
- Posts: 3077
- Liked: 455 times
- Joined: Aug 07, 2018 3:11 pm
- Full Name: Fedor Maslov
- Contact:
Re: Immutability with Minio possible?
Hi Mdiver,
v9.5U4 doesn't support immutability at all, it's a v10 feature.
In general, v10 supports immutability feature on any S3-compatible devices which implements S3 Object Lock API.
However, Minio did not release this API until most recently, so we have not been using it in our QC labs for v10 to validate their API implementation. I have spoken to our QC leadership about it, and they will schedule this testing for post v10.
Thanks
v9.5U4 doesn't support immutability at all, it's a v10 feature.
In general, v10 supports immutability feature on any S3-compatible devices which implements S3 Object Lock API.
However, Minio did not release this API until most recently, so we have not been using it in our QC labs for v10 to validate their API implementation. I have spoken to our QC leadership about it, and they will schedule this testing for post v10.
Thanks
-
- Enthusiast
- Posts: 44
- Liked: 4 times
- Joined: Jul 21, 2016 12:29 pm
- Full Name: Emanuel Dirschedl
- Contact:
Re: Immutability with Minio possible?
@wishr: Do you have a list of tested object storage devices with the V10 immutability feature?
-
- Chief Product Officer
- Posts: 31803
- Liked: 7298 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Immutability with Minio possible?
We've been testing with Cloudian, since there were not too many alternatives at the time.
-
- Enthusiast
- Posts: 44
- Liked: 4 times
- Joined: Jul 21, 2016 12:29 pm
- Full Name: Emanuel Dirschedl
- Contact:
Re: Immutability with Minio possible?
Do you plan to integrate the immutability feature as criteria for VEEAM Ready, after releasing V10?
-
- Veteran
- Posts: 1943
- Liked: 247 times
- Joined: Dec 01, 2016 3:49 pm
- Full Name: Dmitry Grinev
- Location: St.Petersburg
- Contact:
Re: Immutability with Minio possible?
I have heard it will be a part of the Veeam Ready program.
Thanks!
Thanks!
-
- Chief Product Officer
- Posts: 31803
- Liked: 7298 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Immutability with Minio possible?
But optional part, of course.
-
- Enthusiast
- Posts: 44
- Liked: 4 times
- Joined: Jul 21, 2016 12:29 pm
- Full Name: Emanuel Dirschedl
- Contact:
Re: Immutability with Minio possible?
Does someone has a list of object storage products where S3 object lock is already possible? I've the feeling that there is not much choice in this area currently.
I know only from AWS (of course), Cloudian and Minio currently after reading this thread.
I know only from AWS (of course), Cloudian and Minio currently after reading this thread.
-
- Veeam Software
- Posts: 296
- Liked: 141 times
- Joined: Jul 24, 2018 8:38 pm
- Full Name: Stephen Firmes
- Contact:
Re: Immutability with Minio possible?
We are currently working with our technical alliance partners who support the S3 object lock feature as they continue to test their offerings with our V10 immutability feature. We are also working on including optional immutability tests in our Veeam Ready Object program for v10 for any alliance partner who supports S3 object locking.
Steve Firmes | Senior Solutions Architect, Product Management - Alliances @ Veeam Software
-
- Chief Product Officer
- Posts: 31803
- Liked: 7298 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Immutability with Minio possible?
You can also add Zadara to that list.edirschedl wrote: ↑Feb 04, 2020 1:18 pmI know only from AWS (of course), Cloudian and Minio currently after reading this thread.
-
- Service Provider
- Posts: 14
- Liked: 10 times
- Joined: Oct 19, 2018 7:02 am
- Full Name: Michael Engl
- Location: Germany
- Contact:
Re: Immutability with Minio possible?
Did a quick test today with minio.
Minio DEVELOPMENT.GOGET most current of today
VBR v10 RTM 10.0.0.442
Does this have to be enabled in minio?Failed to enable backup immutability: the selected object storage does not support S3 Object Lock feature
Minio DEVELOPMENT.GOGET most current of today
VBR v10 RTM 10.0.0.442
-
- Veeam Software
- Posts: 296
- Liked: 141 times
- Joined: Jul 24, 2018 8:38 pm
- Full Name: Stephen Firmes
- Contact:
Re: Immutability with Minio possible?
Yes they do support the S3 object locking. This isnt their WORM setting. That got me on my 1st tests.
I am testing minio running on Centos 8 with our v10 RTM code using the S3 API CLI.
I used the following commands to create the locked/immutable bucket:
During the next few weeks, I will be running minio through other testing via the v10 gui and will update this thread with any tips or issues that may help you.
I am testing minio running on Centos 8 with our v10 RTM code using the S3 API CLI.
I used the following commands to create the locked/immutable bucket:
Code: Select all
[root@Minio-Centos minio]# mc mb myminio/testlock --with-lock
Bucket created successfully `myminio/testlock`.
[root@Minio-Centos minio]# mc lock myminio/testlock compliance 30d
COMPLIANCE mode is enabled for 30d
This is how I was able to confirm it.
[root@Minio-Centos minio]# aws --no-verify-ssl --endpoint-url https://minio:9000 s3api get-object-lock-configuration --bucket testlock
{
"ObjectLockConfiguration": {
"ObjectLockEnabled": "Enabled",
"Rule": {
"DefaultRetention": {
"Mode": "COMPLIANCE",
"Days": 30
}
}
}
}
Steve Firmes | Senior Solutions Architect, Product Management - Alliances @ Veeam Software
-
- Service Provider
- Posts: 14
- Liked: 10 times
- Joined: Oct 19, 2018 7:02 am
- Full Name: Michael Engl
- Location: Germany
- Contact:
Re: Immutability with Minio possible?
Thanks. Thats it!
With the lock option configured I was able to add it with immutability enabled.
With the lock option configured I was able to add it with immutability enabled.
-
- Veeam Software
- Posts: 296
- Liked: 141 times
- Joined: Jul 24, 2018 8:38 pm
- Full Name: Stephen Firmes
- Contact:
Re: Immutability with Minio possible?
Were you able to verify if the immutability was working? In my testing I got errors during the SOBR offload process due to versioning not being on the Minio bucket.
We require versioning to be enabled on the bucket when object locking is enabled. Minio doesn't support versioning and based on their feature request page they don't intend to https://github.com/minio/minio/pull/649 ... -497511953
You can verify if you have versioning enabled by the using AWS S3 API cmd "get-bucket-versioning" https://docs.aws.amazon.com/cli/latest/ ... oning.html
The syntax to use the AWS S3 API with the Minio cli is here:
# aws --no-verify-ssl --endpoint-url https://<>ip address or server name>:9000 s3api get-bucket-versioning --bucket <bucket name>
I will continue to work with Minio and will update this thread if I learn anything regarding getting Minio to work with our immutability feature.
Steve Firmes | Senior Solutions Architect, Product Management - Alliances @ Veeam Software
-
- Technology Partner
- Posts: 1
- Liked: 3 times
- Joined: Feb 10, 2020 8:03 pm
- Full Name: FNU Harshavardhana
- Contact:
Re: Immutability with Minio possible?
MinIO doesn't support versioning yet but it is being actively worked on https://github.com/minio/minio/tree/xl-v2
The relevant issue to track https://github.com/minio/minio/issues/2 ... -577406100
The relevant issue to track https://github.com/minio/minio/issues/2 ... -577406100
-
- Chief Product Officer
- Posts: 31803
- Liked: 7298 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Immutability with Minio possible?
Thanks, Fnu. I see you're from MinIO, so I marked your forum account as TAP. Please, keep the community posted on the progress.
-
- Veeam Software
- Posts: 296
- Liked: 141 times
- Joined: Jul 24, 2018 8:38 pm
- Full Name: Stephen Firmes
- Contact:
Re: Immutability with Minio possible?
When the versioning is supported by Minio, I will do some testing and post the results in this thread.
Steve Firmes | Senior Solutions Architect, Product Management - Alliances @ Veeam Software
-
- Certified Trainer
- Posts: 1025
- Liked: 448 times
- Joined: Jul 23, 2012 8:16 am
- Full Name: Preben Berg
- Contact:
-
- Veeam Software
- Posts: 492
- Liked: 175 times
- Joined: Jul 21, 2015 12:38 pm
- Full Name: Dustin Albertson
- Contact:
Re: Immutability with Minio possible?
Ceph would need to be tested with Veeam Ready. @poulpreben
@sfirmes Lets discuss this today
@sfirmes Lets discuss this today
Dustin Albertson | Director of Product Management - Cloud & Applications | Veeam Product Management, Alliances
-
- Veeam Software
- Posts: 296
- Liked: 141 times
- Joined: Jul 24, 2018 8:38 pm
- Full Name: Stephen Firmes
- Contact:
Re: Immutability with Minio possible?
Thanks @poulpreben and @dalbertson. When any Ceph testing is done, I will post the results.
Steve Firmes | Senior Solutions Architect, Product Management - Alliances @ Veeam Software
-
- Chief Product Officer
- Posts: 31803
- Liked: 7298 times
- Joined: Jan 01, 2006 1:01 am
- Location: Baar, Switzerland
- Contact:
Re: Immutability with on-prem S3 storage
Just wanted to update that both Cloudian and Zadara have passed Veeam Ready for Object Storage, including optional immutability support verification. Thanks!
-
- Novice
- Posts: 8
- Liked: never
- Joined: Dec 04, 2015 9:18 am
- Full Name: Erik van der Neut
- Contact:
Re: Immutability with on-prem S3 storage
Started following this topic as the idea is taking shape to add an expansion cabinet to our Synology RS3617RPxs (Backup Copy target in another building) and run Minio on Docker on it to present an immutable datastore to VeeAm.
-
- Veeam Software
- Posts: 296
- Liked: 141 times
- Joined: Jul 24, 2018 8:38 pm
- Full Name: Stephen Firmes
- Contact:
Re: Immutability with on-prem S3 storage
Currently Minio isn’t compatible with our immutability feature due to them not supporting versioning. I expect them to have versioning support soon and when they do they will be tested. I’ll update this thread when they successfully pass the tests.
Steve Firmes | Senior Solutions Architect, Product Management - Alliances @ Veeam Software
-
- VP, Product Management
- Posts: 7076
- Liked: 1510 times
- Joined: May 04, 2011 8:36 am
- Full Name: Andreas Neufert
- Location: Germany
- Contact:
Re: Immutability with on-prem S3 storage
We always share latest infos here: object-storage-f52/unoffizial-compatibi ... 56956.html
-
- Influencer
- Posts: 14
- Liked: 3 times
- Joined: Jan 21, 2015 1:18 pm
- Contact:
Re: Immutability with on-prem S3 storage
Hi !
Does immutable object lock work/supported on NetApp S3 GRID on prem ? Anyone know ?
Does immutable object lock work/supported on NetApp S3 GRID on prem ? Anyone know ?
-
- Veeam Software
- Posts: 296
- Liked: 141 times
- Joined: Jul 24, 2018 8:38 pm
- Full Name: Stephen Firmes
- Contact:
Re: Immutability with on-prem S3 storage
@Mattias The NetApp S3 GRID doesn't have this feature yet. When it does we will update the list noted above.
Steve Firmes | Senior Solutions Architect, Product Management - Alliances @ Veeam Software
-
- Expert
- Posts: 158
- Liked: 8 times
- Joined: Jul 23, 2011 12:35 am
[MERGED] Immutable backup ransomware protection?
In the What's New for Veeam 10 is this
"The new immutable backups feature protects your recent backup copies from modification and deletions by leveraging advanced object storage functionality called S3 Object Lock. You can create immutable backup copies on Amazon S3, as well as any S3-compatible service provider or on-premises object storage solution which implements S3 Object Lock AP"
We are looking to take advantage is this feature. Are there any "on-premises object storage solution which implements S3 Object Lock AP"? We use Nimble Storage, does it have this feature? Do I need to contract with Amazon to get a target that uses this feature?
"The new immutable backups feature protects your recent backup copies from modification and deletions by leveraging advanced object storage functionality called S3 Object Lock. You can create immutable backup copies on Amazon S3, as well as any S3-compatible service provider or on-premises object storage solution which implements S3 Object Lock AP"
We are looking to take advantage is this feature. Are there any "on-premises object storage solution which implements S3 Object Lock AP"? We use Nimble Storage, does it have this feature? Do I need to contract with Amazon to get a target that uses this feature?
-
- Veteran
- Posts: 3077
- Liked: 455 times
- Joined: Aug 07, 2018 3:11 pm
- Full Name: Fedor Maslov
- Contact:
Re: Immutable backup ransomware protection?
Hi HendersonD,
I'm merging your question with an existing tread. Please, take a quick look and let us know if you have any additional questions.
Thanks
I'm merging your question with an existing tread. Please, take a quick look and let us know if you have any additional questions.
Thanks
-
- Veeam Software
- Posts: 296
- Liked: 141 times
- Joined: Jul 24, 2018 8:38 pm
- Full Name: Stephen Firmes
- Contact:
Re: Immutability with on-prem S3 storage
@HendersonD There is a link in a previous post by Andreas in this thread with a link to the unofficial compatibility list.
Steve Firmes | Senior Solutions Architect, Product Management - Alliances @ Veeam Software
-
- Veeam Software
- Posts: 492
- Liked: 175 times
- Joined: Jul 21, 2015 12:38 pm
- Full Name: Dustin Albertson
- Contact:
Re: Immutability with on-prem S3 storage
@HendersonD as stated above we will list the vendors who passed Veeam ready testing on the veeam ready page.
https://www.veeam.com/ready.html
object-storage-f52/unoffizial-compatibi ... 56956.html
Right now netapp isn’t on there. A few others are close. You could leverage S3
https://www.veeam.com/ready.html
object-storage-f52/unoffizial-compatibi ... 56956.html
Right now netapp isn’t on there. A few others are close. You could leverage S3
Dustin Albertson | Director of Product Management - Cloud & Applications | Veeam Product Management, Alliances
Who is online
Users browsing this forum: No registered users and 13 guests