用法:
call_stack(futures=None, keys=None)
所有相关键的主动运行调用堆栈
您可以通过在
futures=
关键字中提供期货或集合或在keys=
关键字中提供显式键列表来指定感兴趣的数据。如果两者均未提供,则将返回所有调用堆栈。- futures:列表(可选)
期货列表,默认为所有数据
- keys:列表(可选)
键名列表,默认为所有数据
参数:
例子:
>>> df = dd.read_parquet(...).persist() >>> client.call_stack(df) # call on collections
>>> client.call_stack() # Or call with no arguments for all activity
相关用法
- Python distributed.Client.compute用法及代码示例
- Python distributed.Client.gather用法及代码示例
- Python distributed.Client.ncores用法及代码示例
- 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.nthreads用法及代码示例
- 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用法及代码示例
- Python distributed.Client.log_event用法及代码示例
注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 distributed.Client.call_stack。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。