Effect of instance state on storage

Different EC2 instance state has different effect on storage attached to EC2 like EBS, EIS etc. There are mainly four different state of EC2 instance Hibernate Terminate Stop Reboot Before going further, let's dive into different storage that we cover here: EIS (Elastic Instance Storage) - physically attached to EC2 instance, can't be detached and attached to other instance. it's like heart(EIS) of a man(EC2) 😂 EBS (Elastic Block Storage) - this is network attached , means storage is linked via network. it can be detached and attached to other instance. it's like clothes (EBS) of a man(EC2) 😅 Root EBS - this is same EBS but store only system data necessary for booting up instance. Let's see one by one and there effect on storage. Hibernate Definition : Saves the in-memory state (RAM) to the root EBS volume, then stops the instance. Effect on Data Stored in Instance : Data in memory (RAM) is saved to EBS. Data on attached EBS volumes is preserved. Data o...