mirror of
https://github.com/openshift/openshift-docs.git
synced 2026-02-05 12:46:18 +01:00
38 lines
1.0 KiB
Plaintext
38 lines
1.0 KiB
Plaintext
// Module included in the following assemblies:
|
|
//
|
|
// * machine_management/creating_machinesets/creating-machineset-aws.adoc
|
|
|
|
:_mod-docs-content-type: PROCEDURE
|
|
[id="machine-feature-aws-throughput_{context}"]
|
|
= Configuring storage throughput for gp3 drives
|
|
|
|
[role="_abstract"]
|
|
You can improve performance for high traffic services by increasing the throughput of gp3 storage volumes in an {aws-short} cluster. You can configure the storage throughput in a compute machine set.
|
|
|
|
.Prerequisites
|
|
|
|
* You use gp3 storage volume(s).
|
|
|
|
.Procedure
|
|
|
|
* On the machine set that you want to configure throughput, add the `throughputMib` parameter:
|
|
+
|
|
[source,yaml]
|
|
----
|
|
apiVersion: machine.openshift.io/v1beta1
|
|
kind: MachineSet
|
|
# ...
|
|
spec:
|
|
template:
|
|
spec:
|
|
providerSpec:
|
|
value:
|
|
blockDevices:
|
|
- ebs:
|
|
throughputMib: <throughput_value>
|
|
|
|
# ...
|
|
----
|
|
where:
|
|
|
|
`<throughput_value>`:: Specifies a value in MiB/s between 125 and 2,000. This value can only be modified on gp3 volumes. The default value is 125. |