标签: amazon-web-services hadoop amazon-ec2 aws-lambda java-web-start
我想知道我的实例是否处于运行状态,如果它处于运行状态,那么只有文件将从s3复制到我的ec2实例中,然后文件将在该机器中运行。
答案 0 :(得分:1)
您可以查询instance "state" attribute。
例如:instance.state['Name']
instance.state['Name']
返回状态字符串,例如stopped
stopped
可能的状态是:
0:挂起16:运行32:关闭48:终止64 :停止80:停止
这里有Python code example来检索EC2实例信息。