Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一些使用snow集群的东西。目前,我知道查看有多少活动集群的唯一方法是打开任务管理器 -> 资源管理器 -> 按名称排序并查找RScript对象。有没有办法在 R 中做到这一点?
snow
RScript
另外我问这个的原因是我可以删除以前创建的集群。有时我会在 R 中RScript运行后看到仍然存在的对象stopCluster()。任何建议将不胜感激。
stopCluster()
注意:到目前为止,我所做的所有集群都是localhost/SOCK在我的笔记本电脑上使用第二核的集群。
localhost/SOCK
您必须创建一个cluster对象,通常称为cl,您可以对其进行检查。
cluster
cl
从帮助页面:
## Two workers run on the local machine as a SOCK cluster. cl <- makeCluster(c("localhost","localhost"), type = "SOCK") clusterApply(cl, 1:2, get("+"), 3) stopCluster(cl)
该cl对象将告诉您有关主机的信息。