boto3:创建 Spot 实例
boto3: Spot Instance Creation
我正在尝试使用 boto3 创建一个 spot 实例。虽然我遵循 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 参数。
我是不是漏掉了什么?
虽然 API 文档中没有指定,但显然 'SecurityGroups' 参数需要安全组的名称,而不是 ID。
更改为组名解决了问题。
首先感谢任何费心阅读问题的人。
尝试使用安全组 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)
我正在尝试使用 boto3 创建一个 spot 实例。虽然我遵循 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 参数。
我是不是漏掉了什么?
虽然 API 文档中没有指定,但显然 'SecurityGroups' 参数需要安全组的名称,而不是 ID。
更改为组名解决了问题。
首先感谢任何费心阅读问题的人。
尝试使用安全组 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)