Skip to content
Prev 1231 / 2152 Next

Can't start multi node SNOW cluster

On Sat, Feb 4, 2012 at 11:35 PM, Xiaobo Gu <guxiaobo1982 at gmail.com> wrote:
I think you should use something like:

    cl <- makeCluster(lapply(1:2, function(i) winOptions), type =
"SOCK", manual=TRUE)

To allow options to be passed in with the host names, you need to
specify a list of lists.  Using "c(rep(winOptions, 2))" concatenates winOptions
to itself which makes snow think that you're passing in a simple lists of
hostnames.

- Steve