Class LustreDeploymentType
The different kinds of file system deployments used by Lustre.
Inheritance
Namespace: Amazon.CDK.AWS.FSx
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public sealed class LustreDeploymentType : Enum
Syntax (vb)
Public NotInheritable Class LustreDeploymentType
Inherits
Enum
Remarks
ExampleMetadata: infused
Examples
using Amazon.CDK.AWS.S3;
Vpc vpc;
Bucket bucket;
IDictionary<string, object> lustreConfiguration = new Dictionary<string, object> {
{ "deploymentType", LustreDeploymentType.SCRATCH_2 },
{ "exportPath", bucket.S3UrlForObject() },
{ "importPath", bucket.S3UrlForObject() },
{ "autoImportPolicy", LustreAutoImportPolicy.NEW_CHANGED_DELETED }
};
var fs = new LustreFileSystem(this, "FsxLustreFileSystem", new LustreFileSystemProps {
Vpc = vpc,
VpcSubnet = vpc.PrivateSubnets[0],
StorageCapacityGiB = 1200,
LustreConfiguration = lustreConfiguration
});
Synopsis
Fields
PERSISTENT_1 | Long term storage. |
PERSISTENT_2 | Newer type of long term storage with higher throughput tiers. |
SCRATCH_1 | Original type for shorter term data processing. |
SCRATCH_2 | Newer type for shorter term data processing. |
value__ |
Fields
PERSISTENT_1
Long term storage.
public const LustreDeploymentType PERSISTENT_1
Field Value
Type | Description |
---|---|
Lustre |
Remarks
Data is replicated and file servers are replaced if they fail.
PERSISTENT_2
Newer type of long term storage with higher throughput tiers.
public const LustreDeploymentType PERSISTENT_2
Field Value
Type | Description |
---|---|
Lustre |
Remarks
Data is replicated and file servers are replaced if they fail.
SCRATCH_1
Original type for shorter term data processing.
public const LustreDeploymentType SCRATCH_1
Field Value
Type | Description |
---|---|
Lustre |
Remarks
Data is not replicated and does not persist on server fail.
SCRATCH_2
Newer type for shorter term data processing.
public const LustreDeploymentType SCRATCH_2
Field Value
Type | Description |
---|---|
Lustre |
Remarks
Data is not replicated and does not persist on server fail. Provides better support for spiky workloads.
value__
public int value__
Field Value
Type | Description |
---|---|
System. |