Ultra-high I/O ECSs use high-performance local NVMe SSDs to provide high storage input/output operations per second (IOPS) and low read/write latency. You can create such ECSs with high-performance local NVMe SSDs attached on the management console.
Ultra-high I/O ECSs can be used for high-performance relational databases, NoSQL databases (such as Cassandra and MongoDB), and ElasticSearch.
Flavor |
vCPUs |
Memory (GiB) |
Max./Assured Bandwidth (Gbit/s) |
Max. PPS (10,000) |
Max. NIC Queues |
Max. NICs |
Local Disks (GiB) |
Virtualization |
---|---|---|---|---|---|---|---|---|
i3.2xlarge.4 |
8 |
32 |
15/4.5 |
150 |
4 |
4 |
1 × 3,200 GiB NVMe |
KVM |
i3.4xlarge.4 |
16 |
64 |
20/9 |
280 |
8 |
8 |
2 × 3,200 GiB NVMe |
KVM |
i3.8xlarge.4 |
32 |
128 |
30/18 |
550 |
16 |
8 |
4 × 3,200 GiB NVMe |
KVM |
i3.12xlarge.4 |
48 |
192 |
35/27 |
750 |
16 |
8 |
6 × 3,200 GiB NVMe |
KVM |
i3.16xlarge.4 |
64 |
256 |
40/32 |
1000 |
32 |
8 |
8 × 3,200 GiB NVMe |
KVM |
Table 2 and Table 3 lists the IOPS performance of local disks and specifications of a single local disk attached to an I3 ECS.
OS |
Version |
---|---|
Alma |
Alma 8 64bit |
CentOS |
|
Debian |
|
EulerOS |
EulerOS 2.5 64bit |
Fedora |
|
OpenSUSE |
OpenSUSE 15.3 64bit |
Oracle Linux |
|
Red Hat |
|
Rocky |
Rocky 8 64bit |
SUSE |
|
SUSE-SAP |
|
Ubuntu |
|
Windows |
|
openEuler |
openEuler 20.03 64bit |
If the hardware of host machines is faulty or subhealthy and needs to be repaired, you need to stop the ECS.
If a local disk attached to an ECS is damaged, perform the following operations to handle this issue:
For a Linux ECS:
In the example shown in Figure 1, the mount point of /dev/nvme0n1 is /mnt/nvme0. Run the following command:
umount /mnt/nvme0
In this example, run the following command to obtain the UUID of the /dev/nvme0n1 partition:
blkid /dev/nvme0n1
Information similar to the following is displayed:
/dev/nvme0n1: UUID="b9a07b7b-9322-4e05-ab9b-14b8050cd8cc" TYPE="ext4"
cat /etc/fstab
Information similar to the following is displayed:
UUID=b9a07b7b-9322-4e05-ab9b-14b8050cd8cc /mnt ext4 defaults 0 0
vi /etc/fstab
Use the UUID obtained in 2.a to check whether the mounting information of the local disk is contained in /etc/fstab. If yes, comment out the information. This prevents the ECS from entering the maintenance mode upon ECS startup after the local disk is replaced.
For example, add a pound sign (#) at the beginning of the following command line to comment out the automatic mounting information:
# UUID=b9a07b7b-9322-4e05-ab9b-14b8050cd8cc /mnt ext4 defaults 0 0
For example, if the nvme0n1 disk is faulty, obtain the serial number of the nvme0n1 disk.
ll /dev/disk/by-id/
After the local disk is replaced, restart the ECS to synchronize the new local disk information to the virtualization layer.
For a Windows ECS:
Get-CimInstance -ClassName Win32_LogicalDiskToPartition |select Antecedent, Dependent | fl
Get-Disk | select Number, SerialNumber
After the local disk is replaced, restart the ECS to synchronize the new local disk information to the virtualization layer.