用法:
publish_dataset(*args, **kwargs)
將命名數據集發布到調度程序
這存儲了對調度程序上的 dask 集合或期貨列表的命名引用。這些參考可供其他客戶使用,他們可以使用
get_dataset
下載集合或期貨。不會立即計算數據集。您可能希望在發布數據集之前調用
Client.persist
。- args:作為名稱發布的對象列表
- kwargs:dict
要在調度程序上發布的命名集合
- None
參數:
返回:
例子:
發布客戶:
>>> df = dd.read_csv('s3://...') >>> df = c.persist(df) >>> c.publish_dataset(my_dataset=df)
替代調用 >>> c.publish_dataset(df, name='my_dataset')
接收客戶:
>>> c.list_datasets() ['my_dataset'] >>> df2 = c.get_dataset('my_dataset')
相關用法
- Python distributed.Client.profile用法及代碼示例
- Python distributed.Client.processing用法及代碼示例
- Python distributed.Client.persist用法及代碼示例
- 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.compute用法及代碼示例
- Python distributed.Client.nthreads用法及代碼示例
- Python distributed.Client.unpublish_dataset用法及代碼示例
- Python distributed.Client.start_ipython_scheduler用法及代碼示例
- Python distributed.Client.get用法及代碼示例
- Python distributed.Client.who_has用法及代碼示例
- Python distributed.Client.get_versions用法及代碼示例
- Python distributed.Client.run用法及代碼示例
- Python distributed.Client.register_worker_plugin用法及代碼示例
- Python distributed.Client.map用法及代碼示例
注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 distributed.Client.publish_dataset。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。