當前位置: 首頁>>代碼示例>>Python>>正文


Python Nanny.resource_collect方法代碼示例

本文整理匯總了Python中distributed.Nanny.resource_collect方法的典型用法代碼示例。如果您正苦於以下問題:Python Nanny.resource_collect方法的具體用法?Python Nanny.resource_collect怎麽用?Python Nanny.resource_collect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在distributed.Nanny的用法示例。


在下文中一共展示了Nanny.resource_collect方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_monitor_resources

# 需要導入模塊: from distributed import Nanny [as 別名]
# 或者: from distributed.Nanny import resource_collect [as 別名]
def test_monitor_resources():
    pytest.importorskip('psutil')
    c = Center(ip='127.0.0.1')
    c.listen(0)
    n = Nanny(c.ip, c.port, ncores=2, ip='127.0.0.1')

    yield n._start()
    nn = rpc(ip=n.ip, port=n.port)
    assert n.process.is_alive()
    d = n.resource_collect()
    assert {'cpu_percent', 'memory_percent'}.issubset(d)

    assert isinstance(d['timestamp'], datetime)

    stream = yield connect(ip=n.ip, port=n.port)
    yield write(stream, {'op': 'monitor_resources', 'interval': 0.01})

    for i in range(3):
        msg = yield read(stream)
        assert isinstance(msg, dict)
        assert {'cpu_percent', 'memory_percent'}.issubset(msg)

    stream.close()
    yield n._close()
    c.stop()
開發者ID:canavandl,項目名稱:distributed,代碼行數:27,代碼來源:test_nanny.py

示例2: test_monitor_resources

# 需要導入模塊: from distributed import Nanny [as 別名]
# 或者: from distributed.Nanny import resource_collect [as 別名]
def test_monitor_resources(s):
    pytest.importorskip('psutil')
    n = Nanny(s.ip, s.port, ncores=2, ip='127.0.0.1', loop=s.loop)

    yield n._start()
    assert isalive(n.process)
    d = n.resource_collect()
    assert {'cpu_percent', 'memory_percent'}.issubset(d)

    assert 'timestamp' in d

    stream = yield connect(ip=n.ip, port=n.port)
    yield write(stream, {'op': 'monitor_resources', 'interval': 0.01})

    for i in range(3):
        msg = yield read(stream)
        assert isinstance(msg, dict)
        assert {'cpu_percent', 'memory_percent'}.issubset(msg)

    close(stream)
    yield n._close()
    s.stop()
開發者ID:dask,項目名稱:distributed,代碼行數:24,代碼來源:test_nanny.py


注:本文中的distributed.Nanny.resource_collect方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。