0

I need a filshare, SMB, quorum service for my applications, applications are both windows and linux based.

I tried using AWS FSx Windows cluster but they do not provide auto failover for linux clients, means that linux client will connect to failed subnet unless the failover restored. So, I tried AWS FSx for ONTAP but minimum ssd capacity is 1TB which is going to be costly. I tried creating 2 windows instances with WSFC and quorum, but when I tried to attach EBS to it, it didn't show disks in Failover Clustering, and I dont know how to use iscsi backend with EBS volumes or is it even possible to use it.

But I want alternatives and solutions to FSx or anything will be helpful

Thank You!

1
  • Given your situation, sounds like fsx ONTAP might be your best bet. It handles both SMB and NFS, so it's designed for mixed OS environments. It's got multi-AZ deployments for automatic failover and a bunch of cool data management features. I know the 1TB minimum is a bit of an overkill, but it's flexible - you can scale as you need.
    – Cloudlady
    Commented Jan 8 at 19:33

1 Answer 1

1

FSx for ONTAP is the way to go here if you can afford it, EBS has many limitations around multi-attach:

  • It's gotta be io1/2
  • Multi-Attach enabled volumes can be attached to up to 16 Linux instances built on the Nitro System that are in the same Availability Zone
  • Standard file systems, such as XFS and EXT4, are not designed to be accessed simultaneously by multiple servers, such as EC2 instances. You should use a clustered file system to ensure data resiliency and reliability for your production workloads.
  • Multi-Attach enabled io1 doesn't support I/O fencing, io2 does. there are more, but this makes it not ideal for your use case.

IF WSFC is a must, I would have to go with FSx for ONTAP which doesn't have any of these limitations, and check if it can help consolidate more data into the same filesystem (like the actual data in the WSFC) to elevate the cost consideration.

1
  • yeah! I might be able to use same ONTAP for all the scenarios then sure I can use that, Thanks Commented Mar 11 at 7:01

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Not the answer you're looking for? Browse other questions tagged or ask your own question.