当前位置: 首页>>代码示例>>Python>>正文


Python Compute.should_accept_session方法代码示例

本文整理汇总了Python中cloud.Compute.should_accept_session方法的典型用法代码示例。如果您正苦于以下问题:Python Compute.should_accept_session方法的具体用法?Python Compute.should_accept_session怎么用?Python Compute.should_accept_session使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在cloud.Compute的用法示例。


在下文中一共展示了Compute.should_accept_session方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: publish_anticipated_load

# 需要导入模块: from cloud import Compute [as 别名]
# 或者: from cloud.Compute import should_accept_session [as 别名]
 def publish_anticipated_load(session_name=None):
     iid = Compute.get_instance_id()
     if session_name is None:
         nactive = BaseContainer.num_active(BaseContainer.SFX_INT)
     else:
         JBoxSessionProps.attach_instance(Compute.get_install_id(), session_name, iid, "Preparing")
         nactive = BaseContainer.num_active(BaseContainer.SFX_INT) + 1
     cont_load_pct = min(100, max(0, nactive * 100 / SessContainer.MAX_CONTAINERS))
     self_load = max(Compute.get_instance_stats(iid, 'Load'), cont_load_pct)
     Compute.publish_stats("Load", "Percent", self_load)
     accept = Compute.should_accept_session(is_proposed_cluster_leader())
     JBoxInstanceProps.set_props(Compute.get_install_id(), iid, load=self_load, accept=accept)
开发者ID:nkottary,项目名称:JuliaBox,代码行数:14,代码来源:srvr_jboxd.py

示例2: get_api_status

# 需要导入模块: from cloud import Compute [as 别名]
# 或者: from cloud.Compute import should_accept_session [as 别名]
    def get_api_status():
        api_status = dict()
        for c in BaseContainer.api_containers(allcontainers=True):
            name = c["Names"][0] if (("Names" in c) and (c["Names"] is not None)) else c["Id"][0:12]
            api_name = APIContainer.get_api_name_from_container_name(name)
            if api_name is None:
                continue
            cnt = api_status.get(api_name, 0)
            api_status[api_name] = cnt + 1
        self_load = Compute.get_instance_stats(Compute.get_instance_id(), 'Load')
        accept = Compute.should_accept_session(is_proposed_cluster_leader())

        return {'load': self_load, 'accept': accept, 'api_status': api_status}
开发者ID:Emram,项目名称:JuliaBox,代码行数:15,代码来源:srvr_jboxd.py

示例3: publish_instance_state

# 需要导入模块: from cloud import Compute [as 别名]
# 或者: from cloud.Compute import should_accept_session [as 别名]
    def publish_instance_state():
        iid = Compute.get_instance_id()
        api_status = dict()
        for c in BaseContainer.api_containers(allcontainers=True):
            name = c["Names"][0] if (("Names" in c) and (c["Names"] is not None)) else c["Id"][0:12]
            api_name = APIContainer.get_api_name_from_container_name(name)
            if api_name is None:
                continue
            cnt = api_status.get(api_name, 0)
            api_status[api_name] = cnt + 1
        self_load = Compute.get_instance_stats(iid, 'Load')
        accept = Compute.should_accept_session(is_proposed_cluster_leader())

        JBoxInstanceProps.set_props(Compute.get_install_id(), iid, load=self_load, accept=accept, api_status=api_status)
开发者ID:nkottary,项目名称:JuliaBox,代码行数:16,代码来源:srvr_jboxd.py


注:本文中的cloud.Compute.should_accept_session方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。