本文整理匯總了Python中cloud.aws.CloudHost.should_terminate方法的典型用法代碼示例。如果您正苦於以下問題:Python CloudHost.should_terminate方法的具體用法?Python CloudHost.should_terminate怎麽用?Python CloudHost.should_terminate使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cloud.aws.CloudHost
的用法示例。
在下文中一共展示了CloudHost.should_terminate方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: do_housekeeping
# 需要導入模塊: from cloud.aws import CloudHost [as 別名]
# 或者: from cloud.aws.CloudHost import should_terminate [as 別名]
def do_housekeeping():
JBox.do_update_user_home_image()
server_delete_timeout = JBox.cfg['expire']
JBoxContainer.maintain(max_timeout=server_delete_timeout, inactive_timeout=JBox.cfg['inactivity_timeout'],
protected_names=JBox.cfg['protected_docknames'])
if JBox.cfg['cloud_host']['scale_down'] and (JBoxContainer.num_active() == 0) and \
(JBoxContainer.num_stopped() == 0) and CloudHost.should_terminate():
JBox.log_info("terminating to scale down")
try:
CloudHost.deregister_instance_dns()
except:
CloudHost.log_error("Error deregistering instance dns")
CloudHost.terminate_instance()
elif is_cluster_leader():
CloudHost.log_info("I am the cluster leader")
JBox.monitor_registrations()
if not JBoxDynConfig.is_stat_collected_within(CloudHost.INSTALL_ID, 7):
JBoxContainer.async_collect_stats()