Package software.amazon.awscdk.services.fsx
Amazon FSx Construct Library
Amazon FSx provides fully managed third-party file systems with the native compatibility and feature sets for workloads such as Microsoft Windows–based storage, high-performance computing, machine learning, and electronic design automation.
Amazon FSx supports two file system types: Lustre and Windows File Server.
FSx for Lustre
Amazon FSx for Lustre makes it easy and cost-effective to launch and run the popular, high-performance Lustre file system. You use Lustre for workloads where speed matters, such as machine learning, high performance computing (HPC), video processing, and financial modeling.
The open-source Lustre file system is designed for applications that require fast storage—where you want your storage to keep up with your compute. Lustre was built to solve the problem of quickly and cheaply processing the world's ever-growing datasets. It's a widely used file system designed for the fastest computers in the world. It provides submillisecond latencies, up to hundreds of GBps of throughput, and up to millions of IOPS. For more information on Lustre, see the Lustre website.
As a fully managed service, Amazon FSx makes it easier for you to use Lustre for workloads where storage speed matters. Amazon FSx for Lustre eliminates the traditional complexity of setting up and managing Lustre file systems, enabling you to spin up and run a battle-tested high-performance file system in minutes. It also provides multiple deployment options so you can optimize cost for your needs.
Amazon FSx for Lustre is POSIX-compliant, so you can use your current Linux-based applications without having to make any changes. Amazon FSx for Lustre provides a native file system interface and works as any file system does with your Linux operating system. It also provides read-after-write consistency and supports file locking.
Installation
Import to your project:
import software.amazon.awscdk.services.fsx.*;
Basic Usage
Setup required properties and create:
Vpc vpc;
LustreFileSystem fileSystem = LustreFileSystem.Builder.create(this, "FsxLustreFileSystem")
.lustreConfiguration(LustreConfiguration.builder().deploymentType(LustreDeploymentType.SCRATCH_2).build())
.storageCapacityGiB(1200)
.vpc(vpc)
.vpcSubnet(vpc.getPrivateSubnets()[0])
.build();
File System Type Version
You can set the Lustre version for the file system. To do this, use the fileSystemTypeVersion property:
Vpc vpc;
LustreFileSystem fileSystem = LustreFileSystem.Builder.create(this, "FsxLustreFileSystem")
.lustreConfiguration(LustreConfiguration.builder().deploymentType(LustreDeploymentType.SCRATCH_2).build())
.storageCapacityGiB(1200)
.vpc(vpc)
.vpcSubnet(vpc.getPrivateSubnets()[0])
.fileSystemTypeVersion(FileSystemTypeVersion.V_2_15)
.build();
Note: The fileSystemTypeVersion has a restrictions on the values that can be set based on the deploymentType.
V_2_10is supported by the Scratch andPERSISTENT_1deployment types.V_2_12is supported by all Lustre deployment types.V_2_15is supported by all Lustre deployment types and is recommended for all new file systems.
Note: The default value of fileSystemTypeVersion is V_2_10 except for PERSISTENT_2 deployment type where the default value is V_2_12.
Connecting
To control who can access the file system, use the .connections attribute. FSx has a fixed default port, so you don't
need to specify the port. This example allows an EC2 instance to connect to a file system:
LustreFileSystem fileSystem; Instance instance; fileSystem.connections.allowDefaultPortFrom(instance);
Mounting
The LustreFileSystem Construct exposes both the DNS name of the file system as well as its mount name, which can be used to mount the file system on an EC2 instance. The following example shows how to bring up a file system and EC2 instance, and then use User Data to mount the file system on the instance at start-up:
import software.amazon.awscdk.services.iam.*;
Vpc vpc;
Map<String, LustreDeploymentType> lustreConfiguration = Map.of(
"deploymentType", LustreDeploymentType.SCRATCH_2);
LustreFileSystem fs = LustreFileSystem.Builder.create(this, "FsxLustreFileSystem")
.lustreConfiguration(lustreConfiguration)
.storageCapacityGiB(1200)
.vpc(vpc)
.vpcSubnet(vpc.getPrivateSubnets()[0])
.build();
Instance inst = Instance.Builder.create(this, "inst")
.instanceType(InstanceType.of(InstanceClass.T2, InstanceSize.LARGE))
.machineImage(AmazonLinuxImage.Builder.create()
.generation(AmazonLinuxGeneration.AMAZON_LINUX_2)
.build())
.vpc(vpc)
.vpcSubnets(SubnetSelection.builder()
.subnetType(SubnetType.PUBLIC)
.build())
.build();
fs.connections.allowDefaultPortFrom(inst);
// Need to give the instance access to read information about FSx to determine the file system's mount name.
inst.role.addManagedPolicy(ManagedPolicy.fromAwsManagedPolicyName("AmazonFSxReadOnlyAccess"));
String mountPath = "/mnt/fsx";
String dnsName = fs.getDnsName();
String mountName = fs.getMountName();
inst.userData.addCommands("set -eux", "yum update -y", "amazon-linux-extras install -y lustre2.10", String.format("mkdir -p %s", mountPath), String.format("chmod 777 %s", mountPath), String.format("chown ec2-user:ec2-user %s", mountPath), String.format("echo \"%s@tcp:/%s %s lustre defaults,noatime,flock,_netdev 0 0\" >> /etc/fstab", dnsName, mountName, mountPath), "mount -a");
Importing an existing Lustre filesystem
An FSx for Lustre file system can be imported with fromLustreFileSystemAttributes(this, id, attributes). The
following example lays out how you could import the SecurityGroup a file system belongs to, use that to import the file
system, and then also import the VPC the file system is in and add an EC2 instance to it, giving it access to the file
system.
ISecurityGroup sg = SecurityGroup.fromSecurityGroupId(this, "FsxSecurityGroup", "{SECURITY-GROUP-ID}");
IFileSystem fs = LustreFileSystem.fromLustreFileSystemAttributes(this, "FsxLustreFileSystem", FileSystemAttributes.builder()
.dnsName("{FILE-SYSTEM-DNS-NAME}")
.fileSystemId("{FILE-SYSTEM-ID}")
.securityGroup(sg)
.build());
IVpc vpc = Vpc.fromVpcAttributes(this, "Vpc", VpcAttributes.builder()
.availabilityZones(List.of("us-west-2a", "us-west-2b"))
.publicSubnetIds(List.of("{US-WEST-2A-SUBNET-ID}", "{US-WEST-2B-SUBNET-ID}"))
.vpcId("{VPC-ID}")
.build());
Instance inst = Instance.Builder.create(this, "inst")
.instanceType(InstanceType.of(InstanceClass.T2, InstanceSize.LARGE))
.machineImage(AmazonLinuxImage.Builder.create()
.generation(AmazonLinuxGeneration.AMAZON_LINUX_2)
.build())
.vpc(vpc)
.vpcSubnets(SubnetSelection.builder()
.subnetType(SubnetType.PUBLIC)
.build())
.build();
fs.connections.allowDefaultPortFrom(inst);
Lustre Data Repository Association support
The LustreFilesystem Construct supports one Data Repository Association (DRA) to an S3 bucket. This allows Lustre hierarchical storage management to S3 buckets, which in turn makes it possible to use S3 as a permanent backing store, and use FSx for Lustre as a temporary high performance cache.
Note: CloudFormation does not currently support for PERSISTENT_2 filesystems, and so neither does CDK.
The following example illustrates setting up a DRA to an S3 bucket, including automated metadata import whenever a file is changed, created or deleted in the S3 bucket:
import software.amazon.awscdk.services.s3.*;
Vpc vpc;
Bucket bucket;
Map<String, Object> lustreConfiguration = Map.of(
"deploymentType", LustreDeploymentType.SCRATCH_2,
"exportPath", bucket.s3UrlForObject(),
"importPath", bucket.s3UrlForObject(),
"autoImportPolicy", LustreAutoImportPolicy.NEW_CHANGED_DELETED);
LustreFileSystem fs = LustreFileSystem.Builder.create(this, "FsxLustreFileSystem")
.vpc(vpc)
.vpcSubnet(vpc.getPrivateSubnets()[0])
.storageCapacityGiB(1200)
.lustreConfiguration(lustreConfiguration)
.build();
Compression
By default, transparent compression of data within FSx for Lustre is switched off. To enable it, add the following to your lustreConfiguration:
Map<String, LustreDataCompressionType> lustreConfiguration = Map.of(
// ...
"dataCompressionType", LustreDataCompressionType.LZ4);
When you turn data compression on for an existing file system, only newly written files are compressed. Existing files are not compressed. For more information, see Compressing previously written files.
Backups
You can take daily automatic backups by setting automaticBackupRetention to a non-zero day in the lustreConfiguration.
Additionally, you can set the backup window by specifying the dailyAutomaticBackupStartTime.
import software.amazon.awscdk.*;
Map<String, Object> lustreConfiguration = Map.of(
// ...
"automaticBackupRetention", Duration.days(3), // backup retention
"copyTagsToBackups", true, // if true, tags are copied to backups
"dailyAutomaticBackupStartTime", DailyAutomaticBackupStartTime.Builder.create().hour(11).minute(30).build());
For more information, see Working with backups .
Storage Type
By default, FSx for Lustre uses SSD storage. To use HDD storage, specify storageType:
Vpc vpc;
LustreFileSystem fileSystem = LustreFileSystem.Builder.create(this, "FsxLustreFileSystem")
.lustreConfiguration(LustreConfiguration.builder().deploymentType(LustreDeploymentType.PERSISTENT_1).build())
.storageCapacityGiB(1200)
.vpc(vpc)
.vpcSubnet(vpc.getPrivateSubnets()[0])
.storageType(StorageType.HDD)
.build();
Note: The HDD storage type is only supported for PERSISTENT_1 deployment types.
To improve the performance of frequently accessed files by caching up to 20% of the total storage capacity of the file system, set driveCacheType to READ:
Vpc vpc;
LustreFileSystem fileSystem = LustreFileSystem.Builder.create(this, "FsxLustreFileSystem")
.lustreConfiguration(LustreConfiguration.builder()
.deploymentType(LustreDeploymentType.PERSISTENT_1)
.driveCacheType(DriveCacheType.READ)
.build())
.storageCapacityGiB(1200)
.vpc(vpc)
.vpcSubnet(vpc.getPrivateSubnets()[0])
.storageType(StorageType.HDD)
.build();
FSx for Windows File Server
The L2 construct for the FSx for Windows File Server has not yet been implemented. To instantiate an FSx for Windows file system, the L1 constructs can be used as defined by CloudFormation.
-
ClassDescriptionCreates an Amazon FSx for Lustre data repository association (DRA).Describes a data repository association's automatic export policy.A builder for
CfnDataRepositoryAssociation.AutoExportPolicyPropertyAn implementation forCfnDataRepositoryAssociation.AutoExportPolicyPropertyDescribes the data repository association's automatic import policy.A builder forCfnDataRepositoryAssociation.AutoImportPolicyPropertyAn implementation forCfnDataRepositoryAssociation.AutoImportPolicyPropertyA fluent builder forCfnDataRepositoryAssociation.The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association.A builder forCfnDataRepositoryAssociation.S3PropertyAn implementation forCfnDataRepositoryAssociation.S3PropertyProperties for defining aCfnDataRepositoryAssociation.A builder forCfnDataRepositoryAssociationPropsAn implementation forCfnDataRepositoryAssociationPropsTheAWS::FSx::FileSystemresource is an Amazon FSx resource type that specifies an Amazon FSx file system.The configuration that Amazon FSx for Windows File Server uses to audit and log user accesses of files, folders, and file shares on the Amazon FSx for Windows File Server file system.A builder forCfnFileSystem.AuditLogConfigurationPropertyAn implementation forCfnFileSystem.AuditLogConfigurationPropertyA fluent builder forCfnFileSystem.Specifies who can mount an OpenZFS file system and the options available while mounting the file system.A builder forCfnFileSystem.ClientConfigurationsPropertyAn implementation forCfnFileSystem.ClientConfigurationsPropertyThe configuration for the optional provisioned SSD read cache on Amazon FSx for Lustre file systems that use the Intelligent-Tiering storage class.A builder forCfnFileSystem.DataReadCacheConfigurationPropertyAn implementation forCfnFileSystem.DataReadCacheConfigurationPropertyThe SSD IOPS (input/output operations per second) configuration for an Amazon FSx for NetApp ONTAP, Amazon FSx for Windows File Server, or FSx for OpenZFS file system.A builder forCfnFileSystem.DiskIopsConfigurationPropertyAn implementation forCfnFileSystem.DiskIopsConfigurationPropertyThe configuration for the Amazon FSx for Lustre file system.A builder forCfnFileSystem.LustreConfigurationPropertyAn implementation forCfnFileSystem.LustreConfigurationPropertyThe configuration that allows you to specify the performance of metadata operations for an FSx for Lustre file system.A builder forCfnFileSystem.MetadataConfigurationPropertyAn implementation forCfnFileSystem.MetadataConfigurationPropertyThe configuration object for mounting a file system.A builder forCfnFileSystem.NfsExportsPropertyAn implementation forCfnFileSystem.NfsExportsPropertyThe configuration for this Amazon FSx for NetApp ONTAP file system.A builder forCfnFileSystem.OntapConfigurationPropertyAn implementation forCfnFileSystem.OntapConfigurationPropertyThe OpenZFS configuration for the file system that's being created.A builder forCfnFileSystem.OpenZFSConfigurationPropertyAn implementation forCfnFileSystem.OpenZFSConfigurationPropertyThe configuration for the optional provisioned SSD read cache on Amazon FSx for OpenZFS file systems that use the Intelligent-Tiering storage class.A builder forCfnFileSystem.ReadCacheConfigurationPropertyAn implementation forCfnFileSystem.ReadCacheConfigurationPropertyThe configuration of an Amazon FSx for OpenZFS root volume.A builder forCfnFileSystem.RootVolumeConfigurationPropertyAn implementation forCfnFileSystem.RootVolumeConfigurationPropertyThe configuration that Amazon FSx uses to join a FSx for Windows File Server file system or an FSx for ONTAP storage virtual machine (SVM) to a self-managed (including on-premises) Microsoft Active Directory (AD) directory.An implementation forCfnFileSystem.SelfManagedActiveDirectoryConfigurationPropertyUsed to configure quotas that define how much storage a user or group can use on an FSx for OpenZFS volume.A builder forCfnFileSystem.UserAndGroupQuotasPropertyAn implementation forCfnFileSystem.UserAndGroupQuotasPropertyThe Microsoft Windows configuration for the file system that's being created.A builder forCfnFileSystem.WindowsConfigurationPropertyAn implementation forCfnFileSystem.WindowsConfigurationPropertyProperties for defining aCfnFileSystem.A builder forCfnFileSystemPropsAn implementation forCfnFileSystemPropsAn S3 access point attached to an Amazon FSx volume.A fluent builder forCfnS3AccessPointAttachment.The GID of the file system user.A builder forCfnS3AccessPointAttachment.FileSystemGIDPropertyAn implementation forCfnS3AccessPointAttachment.FileSystemGIDPropertySpecifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point.An implementation forCfnS3AccessPointAttachment.OpenZFSFileSystemIdentityPropertyThe FSx for OpenZFS file system user that is used for authorizing all file access requests that are made using the S3 access point.An implementation forCfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserPropertyDescribes the FSx for OpenZFS attachment configuration of an S3 access point attachment.An implementation forCfnS3AccessPointAttachment.S3AccessPointOpenZFSConfigurationPropertyDescribes the S3 access point configuration of the S3 access point attachment.A builder forCfnS3AccessPointAttachment.S3AccessPointPropertyAn implementation forCfnS3AccessPointAttachment.S3AccessPointPropertyIf included, Amazon S3 restricts access to this access point to requests from the specified virtual private cloud (VPC).An implementation forCfnS3AccessPointAttachment.S3AccessPointVpcConfigurationPropertyProperties for defining aCfnS3AccessPointAttachment.A builder forCfnS3AccessPointAttachmentPropsAn implementation forCfnS3AccessPointAttachmentPropsA snapshot of an Amazon FSx for OpenZFS volume.A fluent builder forCfnSnapshot.Properties for defining aCfnSnapshot.A builder forCfnSnapshotPropsAn implementation forCfnSnapshotPropsCreates a storage virtual machine (SVM) for an Amazon FSx for ONTAP file system.Describes the self-managed Microsoft Active Directory to which you want to join the SVM.An implementation forCfnStorageVirtualMachine.ActiveDirectoryConfigurationPropertyA fluent builder forCfnStorageVirtualMachine.The configuration that Amazon FSx uses to join the ONTAP storage virtual machine (SVM) to your self-managed (including on-premises) Microsoft Active Directory directory.An implementation forCfnStorageVirtualMachine.SelfManagedActiveDirectoryConfigurationPropertyProperties for defining aCfnStorageVirtualMachine.A builder forCfnStorageVirtualMachinePropsAn implementation forCfnStorageVirtualMachinePropsCreates an FSx for ONTAP or Amazon FSx for OpenZFS storage volume.Use to specify configuration options for a volume’s storage aggregate or aggregates.A builder forCfnVolume.AggregateConfigurationPropertyAn implementation forCfnVolume.AggregateConfigurationPropertySets the autocommit period of files in an FSx for ONTAP SnapLock volume, which determines how long the files must remain unmodified before they're automatically transitioned to the write once, read many (WORM) state.A builder forCfnVolume.AutocommitPeriodPropertyAn implementation forCfnVolume.AutocommitPeriodPropertyA fluent builder forCfnVolume.Specifies who can mount an OpenZFS file system and the options available while mounting the file system.A builder forCfnVolume.ClientConfigurationsPropertyAn implementation forCfnVolume.ClientConfigurationsPropertyThe configuration object for mounting a Network File System (NFS) file system.A builder forCfnVolume.NfsExportsPropertyAn implementation forCfnVolume.NfsExportsPropertySpecifies the configuration of the ONTAP volume that you are creating.A builder forCfnVolume.OntapConfigurationPropertyAn implementation forCfnVolume.OntapConfigurationPropertySpecifies the configuration of the Amazon FSx for OpenZFS volume that you are creating.A builder forCfnVolume.OpenZFSConfigurationPropertyAn implementation forCfnVolume.OpenZFSConfigurationPropertyThe configuration object that specifies the snapshot to use as the origin of the data for the volume.A builder forCfnVolume.OriginSnapshotPropertyAn implementation forCfnVolume.OriginSnapshotPropertySpecifies the retention period of an FSx for ONTAP SnapLock volume.A builder forCfnVolume.RetentionPeriodPropertyAn implementation forCfnVolume.RetentionPeriodPropertySpecifies the SnapLock configuration for an FSx for ONTAP SnapLock volume.A builder forCfnVolume.SnaplockConfigurationPropertyAn implementation forCfnVolume.SnaplockConfigurationPropertyThe configuration to set the retention period of an FSx for ONTAP SnapLock volume.A builder forCfnVolume.SnaplockRetentionPeriodPropertyAn implementation forCfnVolume.SnaplockRetentionPeriodPropertyDescribes the data tiering policy for an ONTAP volume.A builder forCfnVolume.TieringPolicyPropertyAn implementation forCfnVolume.TieringPolicyPropertyConfigures how much storage users and groups can use on the volume.A builder forCfnVolume.UserAndGroupQuotasPropertyAn implementation forCfnVolume.UserAndGroupQuotasPropertyProperties for defining aCfnVolume.A builder forCfnVolumePropsAn implementation forCfnVolumePropsClass for scheduling a daily automatic backup time.A fluent builder forDailyAutomaticBackupStartTime.Properties required for setting up a daily automatic backup time.A builder forDailyAutomaticBackupStartTimePropsAn implementation forDailyAutomaticBackupStartTimePropsThe type of drive cache used by PERSISTENT_1 file systems that are provisioned with HDD storage devices.Properties that describe an existing FSx file system.A builder forFileSystemAttributesAn implementation forFileSystemAttributesA new or imported FSx file system.Properties for the FSx file system.A builder forFileSystemPropsAn implementation forFileSystemPropsThe Lustre version for the file system.Interface to implement FSx File Systems.Internal default implementation forIFileSystem.A proxy class which represents a concrete javascript instance of this type.The different auto import policies which are allowed.The configuration for the Amazon FSx for Lustre file system.A builder forLustreConfigurationAn implementation forLustreConfigurationThe permitted Lustre data compression algorithms.The different kinds of file system deployments used by Lustre.The FSx for Lustre File System implementation of IFileSystem.A fluent builder forLustreFileSystem.Properties specific to the Lustre version of the FSx file system.A builder forLustreFileSystemPropsAn implementation forLustreFileSystemPropsClass for scheduling a weekly maintenance time.A fluent builder forLustreMaintenanceTime.Properties required for setting up a weekly maintenance time.A builder forLustreMaintenanceTimePropsAn implementation forLustreMaintenanceTimePropsThe storage type for the file system.Enum for representing all the days of the week.