Dask:设置一个多台机器可以连接到的集群
Dask: Setup a Cluster where multiple machines can connect to
From the docs, there is a class called Cluster
, but other than for the LocalCluster
, I can not find any docs about how to setup a Cluster which accepts workers from different machines (as this is described for LocalCluster
here.
有什么建议吗?
相关问题:
答案是SSHCluster
它基于 asyncssh
并且集群中每台机器可以有多个 worker。确保已安装前置要求。
From the docs, there is a class called Cluster
, but other than for the LocalCluster
, I can not find any docs about how to setup a Cluster which accepts workers from different machines (as this is described for LocalCluster
here.
有什么建议吗?
相关问题:
答案是SSHCluster
它基于 asyncssh
并且集群中每台机器可以有多个 worker。确保已安装前置要求。