如何使用Python Boto v2.0找到装载EBS卷的设备?
boto.ec2.Volume有一些有趣的内容,例如attachment_state
和volume_state
。但是有任何设备映射功能吗?
boto.manage.volume有get_device(self, params)
但需要CommandLineGetter。
有关如何处理的指示或使用boto.manage
的一些示例?
答案 0 :(得分:12)
我相信attach_data.device就是你要找的东西。卷的一部分。
下面是一个例子,不确定这是否是最佳方式,但它输出的是volumeid,instanceid和attachment_data,如:
Attached Volume ID - Instance ID - Device Name
vol-12345678 - i-ab345678 - /dev/sdp
vol-12345678 - i-ab345678 - /dev/sda1
vol-12345678 - i-cd345678 - /dev/sda1
import boto
ec2 = boto.connect_ec2()
res = ec2.get_all_instances()
instances = [i for r in res for i in r.instances]
vol = ec2.get_all_volumes()
def attachedvolumes():
print 'Attached Volume ID - Instance ID','-','Device Name'
for volumes in vol:
if volumes.attachment_state() == 'attached':
filter = {'block-device-mapping.volume-id':volumes.id}
volumesinstance = ec2.get_all_instances(filters=filter)
ids = [z for k in volumesinstance for z in k.instances]
for s in ids:
print volumes.id,'-',s.id,'-',volumes.attach_data.device
# Get a list of unattached volumes
def unattachedvolumes():
for unattachedvol in vol:
state = unattachedvol.attachment_state()
if state == None:
print unattachedvol.id, state
attachedvolumes()
unattachedvolumes()
答案 1 :(得分:8)
目前尚不清楚您是从实例本身还是从外部运行它。如果是后者,则不需要元数据调用。只需提供实例ID。
from boto.ec2.connection import EC2Connection
from boto.utils import get_instance_metadata
conn = EC2Connection()
m = get_instance_metadata()
volumes = [v for v in conn.get_all_volumes() if v.attach_data.instance_id == m['instance-id']]
print volumes[0].attach_data.device
请注意,实例可能有多个卷,因此强大的代码不会假设只有一个设备。
答案 2 :(得分:2)
如果您还想要块设备映射(在linux中,EBS卷的本地设备名称),您还可以使用EC2Connection.get_instance_attribute
来检索本地设备名称及其相应EBS对象的列表: / p>
def get_block_device_mapping(instance_id):
return conn.get_instance_attribute(
instance_id=instance_id,
attribute='blockDeviceMapping'
)['blockDeviceMapping']
这将返回一个字典,其中包含本地设备名称作为键,EBS对象作为值(从中可以获得各种类似volume-id的内容)。
答案 3 :(得分:1)
我发现的最好方法是一次获取一个地区的所有资源并自己关联:
#!/usr/bin/env python2
import boto.ec2
REGION = 'us-east'
CONN = boto.ec2.connect_to_region(REGION)
def main():
volumes = conn.get_all_volumes()
for volume in volumes:
print volume
# Match to an instance id
print volume.attach_data.instance_id
# # Object attributes:
# print volume.__dict__
# # Object methods:
# print(dir(volume))
if __name__ == '__main__':
main()