本文整理汇总了Python中cloud.aws.CloudHost.get_ami_recentness方法的典型用法代码示例。如果您正苦于以下问题:Python CloudHost.get_ami_recentness方法的具体用法?Python CloudHost.get_ami_recentness怎么用?Python CloudHost.get_ami_recentness使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cloud.aws.CloudHost
的用法示例。
在下文中一共展示了CloudHost.get_ami_recentness方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: is_cluster_leader
# 需要导入模块: from cloud.aws import CloudHost [as 别名]
# 或者: from cloud.aws.CloudHost import get_ami_recentness [as 别名]
def is_cluster_leader():
if not CloudHost.ENABLED['cloudwatch']:
return False
cluster = CloudHost.INSTALL_ID
instances = CloudHost.get_autoscaled_instances()
leader = JBoxDynConfig.get_cluster_leader(cluster)
ami_recentness = CloudHost.get_ami_recentness()
JBoxDB.log_debug("cluster: %s. instances: %s. leader: %s. ami_recentness: %d",
cluster, repr(instances), repr(leader), ami_recentness)
# if none set, or set instance is dead elect self as leader, but wait till next cycle to prevent conflicts
if (leader is None) or (leader not in instances) and (ami_recentness >= 0):
JBoxDB.log_info("setting self (%s) as cluster leader", CloudHost.instance_id())
JBoxDynConfig.set_cluster_leader(cluster, CloudHost.instance_id())
return False
is_leader = (leader == CloudHost.instance_id())
# if running an older ami, step down from cluster leader
if (ami_recentness < 0) and is_leader:
JBoxDB.log_info("unmarking self (%s) as cluster leader", CloudHost.instance_id())
JBoxDynConfig.unset_cluster_leader(cluster)
return False
return is_leader