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


Python Server.tasks方法代码示例

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


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

示例1: get_replication_progress

# 需要导入模块: from couchdb import Server [as 别名]
# 或者: from couchdb.Server import tasks [as 别名]
def get_replication_progress(name):
    '''
    Get the progress of all continuous replications
    '''
    server = Server('http://localhost:5984/')
    tasks = server.tasks()
    i = 0
    for task in tasks:
        if i == 0:
            if task.get('continuous'):
                print "Continuous r={}, w={}, p={}%".format(task.get('docs_read'), task.get('docs_written'), task.get('progress'))
            else:
                print "Initialize r={}, w={}, p={}%".format(task.get('docs_read'), task.get('docs_written'), task.get('progress'))
        i = i + 1
    return 0
开发者ID:jsilvestre,项目名称:cozy-fuse-linux,代码行数:17,代码来源:dbutils.py

示例2: kill_running_replications

# 需要导入模块: from couchdb import Server [as 别名]
# 或者: from couchdb.Server import tasks [as 别名]
def kill_running_replications():
    '''
    Kill running replications in CouchDB (based on active tasks info).
    Useful when a replication is in Zombie mode.
    '''
    server = Server('http://localhost:5984/')

    for task in server.tasks():
        data = {
            "replication_id": task["replication_id"],
            "cancel": True
        }
        headers = {'content-type': 'application/json'}
        response = requests.post('http://localhost:5984/_replicate',
                                 json.dumps(data), headers=headers)
        if response.status_code == 200:
            print 'Replication %s stopped.' % data['replication_id']
        else:
            print 'Replication %s was not stopped.' % data['replication_id']
开发者ID:jsilvestre,项目名称:cozy-fuse-linux,代码行数:21,代码来源:actions.py


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