Instance store volume in AWS is not like the EBS Volume (ebs - elastic block storage).
The main difference between EBS and instance store volume, is EBS data or its contents will persist after reboot or shutdown.
And for EBS volume you can take snapshot, create image do a backup or simply attached the EBS volume to another instance.
Where as for instance store volume, which is physically attached to the host. It can't be search or can't be found on the "Volume" navigation pane. Thus, snapshot or taking backup is not possible.
Instance store volume is some sort of a RAMDisk, in which it is indeed process data quite fast.
However, if the instance is rebooted or shutdown all data is gone.
Ideal only for dynamic data processing, that once data is process on the fly; data can be discarded or not needed anymore.
How to view or check whether the instance you have got instance store volume?
In a Linux instance, type the command below on a Terminal window:
lsblk -o +SERIAL
Type the command as it is including the capital letters.
After successfully typing the command it will show an output similar below.
Serial labelled as vol-xxx is an EBS volume which can be found on the Volume Navigation Pane of the AWS interface.
Whereas, the disk with the label AWSxxx is an instance store volume, which is technically part of the instance subscription and is used as a RAMDisk or an ephemeral storage.
Sample output:
Do not put crucial or important data to an ephemeral storage such as an instance store volume, unless there is some sort of a backup or a real-time synchronization to a storage that will persist after reboot or shutdown.
Let your faith be stronger than your fears.
Hold on to Jesus for He is always at your side.
Pray and cast all your worries upon Him.
God never fails, He give us graces according to His abundance.
The main difference between EBS and instance store volume, is EBS data or its contents will persist after reboot or shutdown.
And for EBS volume you can take snapshot, create image do a backup or simply attached the EBS volume to another instance.
Where as for instance store volume, which is physically attached to the host. It can't be search or can't be found on the "Volume" navigation pane. Thus, snapshot or taking backup is not possible.
Instance store volume is some sort of a RAMDisk, in which it is indeed process data quite fast.
However, if the instance is rebooted or shutdown all data is gone.
Ideal only for dynamic data processing, that once data is process on the fly; data can be discarded or not needed anymore.
How to view or check whether the instance you have got instance store volume?
In a Linux instance, type the command below on a Terminal window:
lsblk -o +SERIAL
Type the command as it is including the capital letters.
After successfully typing the command it will show an output similar below.
Serial labelled as vol-xxx is an EBS volume which can be found on the Volume Navigation Pane of the AWS interface.
Whereas, the disk with the label AWSxxx is an instance store volume, which is technically part of the instance subscription and is used as a RAMDisk or an ephemeral storage.
Sample output:
Do not put crucial or important data to an ephemeral storage such as an instance store volume, unless there is some sort of a backup or a real-time synchronization to a storage that will persist after reboot or shutdown.
Let your faith be stronger than your fears.
Hold on to Jesus for He is always at your side.
Pray and cast all your worries upon Him.
God never fails, He give us graces according to His abundance.
Comments
Post a Comment