无法创建 AWS EBS 多重附加卷
Can't create AWS EBS multi-attach volume
我正在尝试在 eu-west-3 中创建一个多附加 io1 卷,不幸的是失败了。
$ aws ec2 create-volume --volume-type io1 --size 100 --iops 300 \
--availability-zone eu-west-3a --region eu-west-3 --multi-attach-enabled
An error occurred (InvalidParameterCombination) when calling the CreateVolume operation: The parameter multi-attach-enabled is not supported for io1 volumes.
$ aws --version
> aws-cli/1.20.60 Python/3.6.9 Linux/4.4.0-19041-Microsoft botocore/1.21.60
但是,在文档中指出卷类型 io1
确实支持多重连接:https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html
此问题是否特定于区域/可用性区域?
我在 us-east-1 试过了,很管用。
仅在有限区域支持 io1 卷的多重附加,eu-west-3 不在其中:
Considerations and limitations
[...]
- Multi-Attach for io1 volumes is available in the following Regions only: us-east-1, us-west-2, eu-west-1, and ap-northeast-2.
—docs
我正在尝试在 eu-west-3 中创建一个多附加 io1 卷,不幸的是失败了。
$ aws ec2 create-volume --volume-type io1 --size 100 --iops 300 \
--availability-zone eu-west-3a --region eu-west-3 --multi-attach-enabled
An error occurred (InvalidParameterCombination) when calling the CreateVolume operation: The parameter multi-attach-enabled is not supported for io1 volumes.
$ aws --version
> aws-cli/1.20.60 Python/3.6.9 Linux/4.4.0-19041-Microsoft botocore/1.21.60
但是,在文档中指出卷类型 io1
确实支持多重连接:https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ebs-volume-types.html
此问题是否特定于区域/可用性区域?
我在 us-east-1 试过了,很管用。
仅在有限区域支持 io1 卷的多重附加,eu-west-3 不在其中:
Considerations and limitations
[...]
- Multi-Attach for io1 volumes is available in the following Regions only: us-east-1, us-west-2, eu-west-1, and ap-northeast-2.
—docs