跨多个 EC2 实例共享的实例存储卷
Instance Store Volume shared across multiple EC2 Instances
我正在尝试了解实例存储容量,并且我了解实例存储是临时存储的理想选择并提供大量 IOPS。它在重启时保留,但在停止和启动、休眠或实例终止时丢失。
我的一个问题是实例存储可以跨 EC2 实例共享吗?
我在文档中看到以下内容所以问。还有如何在 AWS 控制台上实现这个?
An instance store provides temporary block-level storage for your
instance. This storage is located on disks that are physically
attached to the host computer. Instance store is ideal for temporary
storage of information that changes frequently, such as buffers,
caches, scratch data, and other temporary content, or for data that is
replicated across a fleet of instances, such as a load-balanced pool
of web servers
拍摄的文件:https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html
文档中给出的图表非常令人困惑(至少对我而言)。我无法理解它。也许 InstanceA、B 和 C 并不意味着是 EC2 实例,而是 instance store volumes
,就像在同一张图中看到的主机 1 和 2 一样。
还有最重要的部分是
You can specify instance store volumes for an instance only when you launch it. You can't detach an instance store volume from one instance and attach it to a different instance.
这是你想知道的。这意味着您不能在 2 个或更多 EC2 实例之间共享实例存储卷。当 EC2 机器启动并且 运行 时,您无法附加它,并且在启动时您无法指定在创建 EC2 实例时安装哪个卷。
该图显示了 AWS 数据中心的 物理主机计算机 。主机可以重新配置为 运行 许多不同大小的实例系列(例如大、2xlarge、4xlarge)。不要太在意它显示的细节。
一个简单的事实是,不,不能跨多个 Amazon EC2 实例共享实例存储卷。
我正在尝试了解实例存储容量,并且我了解实例存储是临时存储的理想选择并提供大量 IOPS。它在重启时保留,但在停止和启动、休眠或实例终止时丢失。
我的一个问题是实例存储可以跨 EC2 实例共享吗?
我在文档中看到以下内容所以问。还有如何在 AWS 控制台上实现这个?
An instance store provides temporary block-level storage for your instance. This storage is located on disks that are physically attached to the host computer. Instance store is ideal for temporary storage of information that changes frequently, such as buffers, caches, scratch data, and other temporary content, or for data that is replicated across a fleet of instances, such as a load-balanced pool of web servers
拍摄的文件:https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/InstanceStorage.html
文档中给出的图表非常令人困惑(至少对我而言)。我无法理解它。也许 InstanceA、B 和 C 并不意味着是 EC2 实例,而是 instance store volumes
,就像在同一张图中看到的主机 1 和 2 一样。
还有最重要的部分是
You can specify instance store volumes for an instance only when you launch it. You can't detach an instance store volume from one instance and attach it to a different instance.
这是你想知道的。这意味着您不能在 2 个或更多 EC2 实例之间共享实例存储卷。当 EC2 机器启动并且 运行 时,您无法附加它,并且在启动时您无法指定在创建 EC2 实例时安装哪个卷。
该图显示了 AWS 数据中心的 物理主机计算机 。主机可以重新配置为 运行 许多不同大小的实例系列(例如大、2xlarge、4xlarge)。不要太在意它显示的细节。
一个简单的事实是,不,不能跨多个 Amazon EC2 实例共享实例存储卷。