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


Python ClusterOperationHelper.find_orchestrator_with_rest方法代码示例

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


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

示例1: update_orchestrator

# 需要导入模块: from membase.helper.cluster_helper import ClusterOperationHelper [as 别名]
# 或者: from membase.helper.cluster_helper.ClusterOperationHelper import find_orchestrator_with_rest [as 别名]
    def update_orchestrator(self, ref_node = None, retry = 5):

        if len(self.nodes) > 0:

            if ref_node is None:
                ref_node = self.nodes[0]

            address = {'server_ip' : ref_node.ip, 'port' : ref_node.port}
            rest = create_rest(**address)

            status, content = ClusterOperationHelper.find_orchestrator_with_rest(rest)

            if status == True:
                content = re.sub(r".*@", "", content).strip("'").split(':')
                orchestrator_ip, orchestrator_port = \
                    content[0], content[1] if len(content) > 1 else cfg.COUCHBASE_PORT

                # look up matching node in self nodes
                for node in self.nodes:
                    if node.ip == orchestrator_ip and \
                        int(node.port) == int(orchestrator_port):
                            self.orchestrator = node
                            break
            elif retry > 0:
               # wait
               time.sleep(5)

               # select random node and retry
               ref_node = self.nodes[random.randint(0, len(self.nodes) - 1)]
               retry = retry - 1
               return self.update_orchestrator(ref_node, retry)
开发者ID:arod1987,项目名称:testrunner,代码行数:33,代码来源:workload_manager.py


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