用法:
nbytes(keys=None, summary=True, **kwargs)
集群上每个键占用的字节数
这是由
sys.getsizeof
衡量的,可能无法准确反映真实成本。- keys:列表(可选)
键列表,默认为所有键
- summary:布尔值,(可选)
将键汇总为键类型
- **kwargs:dict
远程函数的可选关键字参数
参数:
例子:
>>> x, y, z = c.map(inc, [1, 2, 3]) >>> c.nbytes(summary=False) {'inc-1c8dd6be1c21646c71f76c16d09304ea': 28, 'inc-1e297fc27658d7b67b3a758f16bcf47a': 28, 'inc-fd65c238a7ea60f6a01bf4c8a5fcf44b': 28}
>>> c.nbytes(summary=True) {'inc': 84}
相关用法
- Python distributed.Client.ncores用法及代码示例
- Python distributed.Client.nthreads用法及代码示例
- Python distributed.Client.normalize_collection用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.Client.retire_workers用法及代码示例
- Python distributed.Client.unregister_worker_plugin用法及代码示例
- Python distributed.Client.set_metadata用法及代码示例
- Python distributed.Client.scheduler_info用法及代码示例
- Python distributed.Client.submit用法及代码示例
- Python distributed.Client.compute用法及代码示例
- Python distributed.Client.unpublish_dataset用法及代码示例
- Python distributed.Client.start_ipython_scheduler用法及代码示例
- Python distributed.Client.get用法及代码示例
- Python distributed.Client.publish_dataset用法及代码示例
- Python distributed.Client.who_has用法及代码示例
- Python distributed.Client.get_versions用法及代码示例
- Python distributed.Client.profile用法及代码示例
- Python distributed.Client.run用法及代码示例
- Python distributed.Client.register_worker_plugin用法及代码示例
- Python distributed.Client.map用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.Client.nbytes。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。