AMI of Running Instance versus AMI of Shut Down Instance

0

** If I snapshot (AMI) an instance that is shut down versus If I snapshot (AMI) an instance that is in Running state - What is the difference between the two AMIs? Should they be same or different? Different in what ways? Thanks**

AG
已提问 1 年前285 查看次数
1 回答
0
已接受的回答

In general, it's better to take a snapshot of a shutdown instance (rather than a running one) if possible.

The reason is that if the instance is running then there may be files which the operating system has open which are not completely written to disk when the snapshot happens. Consider a database engine that is writing into many tables and indexes - it's quite possible that at the exact moment the snapshot is taken of the disk that there is data still in memory. When that snapshot is restored, the database will be inconsistent and this could easily lead to data loss.

Is this always the case? No. But it would be difficult to predict when a server is not writing to disk. Some applications (databases, specifically but others too) have flags to "quiesce" operations - that is, pause things while a snapshot is taken which is much better than taking a snapshot of a "live" disk.

Edit (adding): If the instance is hibernated then it is effectively paused. But that doesn't mean that the data has been written to disk successfully. If the applications are tracking the operating system state and are able to receive (and appropriately process) signals from the operating system about the hibernation then they should write data to disk. But that's not a guarantee and it depends on what is running on the instance.

profile pictureAWS
专家
已回答 1 年前
profile picture
专家
已审核 1 年前
  • Thanks a ton! Makes sense. How will the AMI of a Hibernate instance differ or be the same from a Shut down instance?

  • Thanks @Brettski-AWS for the insightful response. I was wondering: " How will the AMI of a Hibernate instance differ or be the same from a Shut down instance?"

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则