当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python distributed.Client.scheduler_info用法及代码示例


用法:

scheduler_info(**kwargs)

集群中worker的基本信息

参数

**kwargsdict

远程函数的可选关键字参数

例子

>>> c.scheduler_info()  
{'id': '2de2b6da-69ee-11e6-ab6a-e82aea155996',
 'services': {},
 'type': 'Scheduler',
 'workers': {'127.0.0.1:40575': {'active': 0,
                                 'last-seen': 1472038237.4845693,
                                 'name': '127.0.0.1:40575',
                                 'services': {},
                                 'stored': 0,
                                 'time-delay': 0.0061032772064208984}}}

相关用法


注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.Client.scheduler_info。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。