Class: Aws::FSx::Types::UpdateOpenZFSVolumeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::FSx::Types::UpdateOpenZFSVolumeConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-fsx/types.rb
Overview
Used to specify changes to the OpenZFS configuration for the volume that you are updating.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#data_compression_type ⇒ String
Specifies the method used to compress the data on the volume.
-
#nfs_exports ⇒ Array<Types::OpenZFSNfsExport>
The configuration object for mounting a Network File System (NFS) file system.
-
#read_only ⇒ Boolean
A Boolean value indicating whether the volume is read-only.
-
#record_size_ki_b ⇒ Integer
Specifies the record size of an OpenZFS volume, in kibibytes (KiB).
-
#storage_capacity_quota_gi_b ⇒ Integer
The maximum amount of storage in gibibytes (GiB) that the volume can use from its parent.
-
#storage_capacity_reservation_gi_b ⇒ Integer
The amount of storage in gibibytes (GiB) to reserve from the parent volume.
-
#user_and_group_quotas ⇒ Array<Types::OpenZFSUserOrGroupQuota>
An object specifying how much storage users or groups can use on the volume.
Instance Attribute Details
#data_compression_type ⇒ String
Specifies the method used to compress the data on the volume. The compression type is ‘NONE` by default.
-
‘NONE` - Doesn’t compress the data on the volume. ‘NONE` is the default.
-
‘ZSTD` - Compresses the data in the volume using the Zstandard (ZSTD) compression algorithm. Compared to LZ4, Z-Standard provides a better compression ratio to minimize on-disk storage utilization.
-
‘LZ4` - Compresses the data in the volume using the LZ4 compression algorithm. Compared to Z-Standard, LZ4 is less compute-intensive and delivers higher write throughput speeds.
9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 |
# File 'lib/aws-sdk-fsx/types.rb', line 9493 class UpdateOpenZFSVolumeConfiguration < Struct.new( :storage_capacity_reservation_gi_b, :storage_capacity_quota_gi_b, :record_size_ki_b, :data_compression_type, :nfs_exports, :user_and_group_quotas, :read_only) SENSITIVE = [] include Aws::Structure end |
#nfs_exports ⇒ Array<Types::OpenZFSNfsExport>
The configuration object for mounting a Network File System (NFS) file system.
9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 |
# File 'lib/aws-sdk-fsx/types.rb', line 9493 class UpdateOpenZFSVolumeConfiguration < Struct.new( :storage_capacity_reservation_gi_b, :storage_capacity_quota_gi_b, :record_size_ki_b, :data_compression_type, :nfs_exports, :user_and_group_quotas, :read_only) SENSITIVE = [] include Aws::Structure end |
#read_only ⇒ Boolean
A Boolean value indicating whether the volume is read-only.
9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 |
# File 'lib/aws-sdk-fsx/types.rb', line 9493 class UpdateOpenZFSVolumeConfiguration < Struct.new( :storage_capacity_reservation_gi_b, :storage_capacity_quota_gi_b, :record_size_ki_b, :data_compression_type, :nfs_exports, :user_and_group_quotas, :read_only) SENSITIVE = [] include Aws::Structure end |
#record_size_ki_b ⇒ Integer
Specifies the record size of an OpenZFS volume, in kibibytes (KiB). Valid values are 4, 8, 16, 32, 64, 128, 256, 512, or 1024 KiB. The default is 128 KiB. Most workloads should use the default record size. Database workflows can benefit from a smaller record size, while streaming workflows can benefit from a larger record size. For additional guidance on when to set a custom record size, see [ Tips for maximizing performance] in the *Amazon FSx for OpenZFS User Guide*.
[1]: docs.aws.amazon.com/fsx/latest/OpenZFSGuide/performance.html#performance-tips-zfs
9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 |
# File 'lib/aws-sdk-fsx/types.rb', line 9493 class UpdateOpenZFSVolumeConfiguration < Struct.new( :storage_capacity_reservation_gi_b, :storage_capacity_quota_gi_b, :record_size_ki_b, :data_compression_type, :nfs_exports, :user_and_group_quotas, :read_only) SENSITIVE = [] include Aws::Structure end |
#storage_capacity_quota_gi_b ⇒ Integer
The maximum amount of storage in gibibytes (GiB) that the volume can use from its parent. You can specify a quota larger than the storage on the parent volume. You can specify a value of ‘-1` to unset a volume’s storage capacity quota.
9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 |
# File 'lib/aws-sdk-fsx/types.rb', line 9493 class UpdateOpenZFSVolumeConfiguration < Struct.new( :storage_capacity_reservation_gi_b, :storage_capacity_quota_gi_b, :record_size_ki_b, :data_compression_type, :nfs_exports, :user_and_group_quotas, :read_only) SENSITIVE = [] include Aws::Structure end |
#storage_capacity_reservation_gi_b ⇒ Integer
The amount of storage in gibibytes (GiB) to reserve from the parent volume. You can’t reserve more storage than the parent volume has reserved. You can specify a value of ‘-1` to unset a volume’s storage capacity reservation.
9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 |
# File 'lib/aws-sdk-fsx/types.rb', line 9493 class UpdateOpenZFSVolumeConfiguration < Struct.new( :storage_capacity_reservation_gi_b, :storage_capacity_quota_gi_b, :record_size_ki_b, :data_compression_type, :nfs_exports, :user_and_group_quotas, :read_only) SENSITIVE = [] include Aws::Structure end |
#user_and_group_quotas ⇒ Array<Types::OpenZFSUserOrGroupQuota>
An object specifying how much storage users or groups can use on the volume.
9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 |
# File 'lib/aws-sdk-fsx/types.rb', line 9493 class UpdateOpenZFSVolumeConfiguration < Struct.new( :storage_capacity_reservation_gi_b, :storage_capacity_quota_gi_b, :record_size_ki_b, :data_compression_type, :nfs_exports, :user_and_group_quotas, :read_only) SENSITIVE = [] include Aws::Structure end |