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_10
is supported by the Scratch andPERSISTENT_1
deployment types.V_2_12
is supported by all Lustre deployment types.V_2_15
is 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.AutoExportPolicyProperty
An implementation forCfnDataRepositoryAssociation.AutoExportPolicyProperty
Describes the data repository association's automatic import policy.A builder forCfnDataRepositoryAssociation.AutoImportPolicyProperty
An implementation forCfnDataRepositoryAssociation.AutoImportPolicyProperty
A 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.S3Property
An implementation forCfnDataRepositoryAssociation.S3Property
Properties for defining aCfnDataRepositoryAssociation
.A builder forCfnDataRepositoryAssociationProps
An implementation forCfnDataRepositoryAssociationProps
TheAWS::FSx::FileSystem
resource 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.AuditLogConfigurationProperty
An implementation forCfnFileSystem.AuditLogConfigurationProperty
A fluent builder forCfnFileSystem
.Specifies who can mount an OpenZFS file system and the options available while mounting the file system.A builder forCfnFileSystem.ClientConfigurationsProperty
An implementation forCfnFileSystem.ClientConfigurationsProperty
The 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.DiskIopsConfigurationProperty
An implementation forCfnFileSystem.DiskIopsConfigurationProperty
The configuration for the Amazon FSx for Lustre file system.A builder forCfnFileSystem.LustreConfigurationProperty
An implementation forCfnFileSystem.LustreConfigurationProperty
Example:A builder forCfnFileSystem.MetadataConfigurationProperty
An implementation forCfnFileSystem.MetadataConfigurationProperty
The configuration object for mounting a file system.A builder forCfnFileSystem.NfsExportsProperty
An implementation forCfnFileSystem.NfsExportsProperty
The configuration for this Amazon FSx for NetApp ONTAP file system.A builder forCfnFileSystem.OntapConfigurationProperty
An implementation forCfnFileSystem.OntapConfigurationProperty
The OpenZFS configuration for the file system that's being created.A builder forCfnFileSystem.OpenZFSConfigurationProperty
An implementation forCfnFileSystem.OpenZFSConfigurationProperty
The configuration of an Amazon FSx for OpenZFS root volume.A builder forCfnFileSystem.RootVolumeConfigurationProperty
An implementation forCfnFileSystem.RootVolumeConfigurationProperty
The 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.SelfManagedActiveDirectoryConfigurationProperty
Used to configure quotas that define how much storage a user or group can use on an FSx for OpenZFS volume.A builder forCfnFileSystem.UserAndGroupQuotasProperty
An implementation forCfnFileSystem.UserAndGroupQuotasProperty
The Microsoft Windows configuration for the file system that's being created.A builder forCfnFileSystem.WindowsConfigurationProperty
An implementation forCfnFileSystem.WindowsConfigurationProperty
Properties for defining aCfnFileSystem
.A builder forCfnFileSystemProps
An implementation forCfnFileSystemProps
A snapshot of an Amazon FSx for OpenZFS volume.A fluent builder forCfnSnapshot
.Properties for defining aCfnSnapshot
.A builder forCfnSnapshotProps
An implementation forCfnSnapshotProps
Creates 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.ActiveDirectoryConfigurationProperty
A 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.SelfManagedActiveDirectoryConfigurationProperty
Properties for defining aCfnStorageVirtualMachine
.A builder forCfnStorageVirtualMachineProps
An implementation forCfnStorageVirtualMachineProps
Creates 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.AggregateConfigurationProperty
An implementation forCfnVolume.AggregateConfigurationProperty
Sets 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.AutocommitPeriodProperty
An implementation forCfnVolume.AutocommitPeriodProperty
A fluent builder forCfnVolume
.Specifies who can mount an OpenZFS file system and the options available while mounting the file system.A builder forCfnVolume.ClientConfigurationsProperty
An implementation forCfnVolume.ClientConfigurationsProperty
The configuration object for mounting a Network File System (NFS) file system.A builder forCfnVolume.NfsExportsProperty
An implementation forCfnVolume.NfsExportsProperty
Specifies the configuration of the ONTAP volume that you are creating.A builder forCfnVolume.OntapConfigurationProperty
An implementation forCfnVolume.OntapConfigurationProperty
Specifies the configuration of the Amazon FSx for OpenZFS volume that you are creating.A builder forCfnVolume.OpenZFSConfigurationProperty
An implementation forCfnVolume.OpenZFSConfigurationProperty
The configuration object that specifies the snapshot to use as the origin of the data for the volume.A builder forCfnVolume.OriginSnapshotProperty
An implementation forCfnVolume.OriginSnapshotProperty
Specifies the retention period of an FSx for ONTAP SnapLock volume.A builder forCfnVolume.RetentionPeriodProperty
An implementation forCfnVolume.RetentionPeriodProperty
Specifies the SnapLock configuration for an FSx for ONTAP SnapLock volume.A builder forCfnVolume.SnaplockConfigurationProperty
An implementation forCfnVolume.SnaplockConfigurationProperty
The configuration to set the retention period of an FSx for ONTAP SnapLock volume.A builder forCfnVolume.SnaplockRetentionPeriodProperty
An implementation forCfnVolume.SnaplockRetentionPeriodProperty
Describes the data tiering policy for an ONTAP volume.A builder forCfnVolume.TieringPolicyProperty
An implementation forCfnVolume.TieringPolicyProperty
Configures how much storage users and groups can use on the volume.A builder forCfnVolume.UserAndGroupQuotasProperty
An implementation forCfnVolume.UserAndGroupQuotasProperty
Properties for defining aCfnVolume
.A builder forCfnVolumeProps
An implementation forCfnVolumeProps
Class for scheduling a daily automatic backup time.A fluent builder forDailyAutomaticBackupStartTime
.Properties required for setting up a daily automatic backup time.A builder forDailyAutomaticBackupStartTimeProps
An implementation forDailyAutomaticBackupStartTimeProps
The 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 forFileSystemAttributes
An implementation forFileSystemAttributes
A new or imported FSx file system.Properties for the FSx file system.A builder forFileSystemProps
An implementation forFileSystemProps
The 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 forLustreConfiguration
An implementation forLustreConfiguration
The 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 forLustreFileSystemProps
An implementation forLustreFileSystemProps
Class for scheduling a weekly maintenance time.A fluent builder forLustreMaintenanceTime
.Properties required for setting up a weekly maintenance time.A builder forLustreMaintenanceTimeProps
An implementation forLustreMaintenanceTimeProps
The storage type for the file system.Enum for representing all the days of the week.