boto3:Spot 实例创建

Posted

技术标签:

【中文标题】boto3:Spot 实例创建【英文标题】:boto3: Spot Instance Creation 【发布时间】:2016-06-13 18:59:09 【问题描述】:

我正在尝试使用 boto3 创建一个现场实例。虽然我关注API documentation,但我收到了一个我无法弄清楚的异常。我使用的代码是:

import boto3
import datetime
client = boto3.client('ec2')
response = client.request_spot_instances(
    DryRun=False,
    SpotPrice='0.10',
    ClientToken='string',
    InstanceCount=1,
    Type='one-time',
    LaunchSpecification=
        'ImageId': 'ami-fce3c696',
        'KeyName': 'awskey.pem',
        'SecurityGroups': ['sg-709f8709'],
        'InstanceType': 'm4.large',
        'Placement': 
            'AvailabilityZone': 'us-east-1a',
        ,
        'BlockDeviceMappings': [
            
                'Ebs': 
                    'SnapshotId': 'snap-f70deff0',
                    'VolumeSize': 100,
                    'DeleteOnTermination': True,
                    'VolumeType': 'gp2',
                    'Iops': 300,
                    'Encrypted': False
                ,
            ,
        ],

        'EbsOptimized': True,
        'Monitoring': 
            'Enabled': True
        ,
        'SecurityGroupIds': [
            'sg-709f8709',
        ]
    
)

我收到以下异常:

botocore.exceptions.ClientError: An error occurred (InvalidParameterValue) when calling the RequestSpotInstances operation: Value () for parameter groupId is invalid. The value cannot be empty

问题是API documentation的请求中没有groupId参数。

我错过了什么吗?

【问题讨论】:

为什么要同时指定SecurityGroupsSecurityGroupIds?看起来您只需要SecurityGroupIds,因为您传递的是 sg id 而不是名称。 【参考方案1】:

尝试使用安全组 ID,它工作正常。

#!/usr/bin/python3.6
import boto3

session=boto3.session.Session(profile_name="*****")
ec2instances=session.resource('ec2',region_name="********")
new_instance = ec2instances.create_instances(
        ImageId = 'ami-04125d804acca5692',
        MinCount = 1,
        MaxCount = 1,
        InstanceType = 't2.micro',
        KeyName ='xxxxxxxxxxxxxxxxx',
        SecurityGroupIds=['sg-05dec40ce8b91a8c8'],
        SubnetId = 'subnet-01ca807d148d9e328'
)
print(new_instance)

【讨论】:

最初的问题是关于现场请求,而不是按需请求。【参考方案2】:

虽然 API 文档中没有指定,但显然 'SecurityGroups' 参数需要安全组的名称,而不是 ID。

更改为组名解决了问题。

感谢大家首先阅读这个问题。

【讨论】:

这只是节省了我几个小时。 你需要SecurityGroupsSecurityGroupIds吗?

以上是关于boto3:Spot 实例创建的主要内容,如果未能解决你的问题,请参考以下文章

boto3或aws cli是否具有从实例创建模板?

AWS:如何使用 Boto3 从实例创建公共 AMI?

python 最简单的boto3示例,用于创建RDS PostgreSQL实例

AWS lambda 使用启动模板和 boto3 创建 ec2 实例,仅使用所需的权限

如何使用 boto3 在集群中启动 EC2 实例

AWS CodeDeploy 与 Spot 和按需实例混合的 Autoscaling 启动模板