またはparallel
を使用してパッケージを介して AWS で並列処理を実行するために、Mac を EC2 インスタンスに接続できるようにしたいと考えています。makePSOCKcluster
makeSOCKCluster
現時点では、私の試行では R が「ハング」したままになっているため、ssh にオプションをmakePSOCKcluster
追加することで出力の一部が表示されるように、 とそのサブルーチンの一部を調整しました。-v
パスワードなしの ssh ログインに対処できたsocketConnection
と思いますが、問題を引き起こしていると思われる部分で行き詰っています。
Elastic IP を関連付けてみましたが、それらを IP アドレスとして使用しても無駄でした。また、セキュリティ グループを調整して、makePSOCKcluster が使用するデフォルトのポートが含まれるようにしましたが、役に立ちませんでした...後者の場合、使用しませんでしたポート引数とそれが言う10187のデフォルトのポートオプションを使用しました:
Error in socketConnection("localhost", port = port, server = TRUE, blocking = TRUE, :
cannot open the connection
In addition: Warning message:
In socketConnection("localhost", port = port, server = TRUE, blocking = TRUE, :
port 10187 cannot be opened
hpc メーリング リストのいくつかの質問を見ると、これは Windows であることに関連する問題のように見えました...しかし、Mac から接続していることを考えると、このカテゴリには該当しないと思います。
hosts
オブジェクトは、EC2 インスタンスの起動後に提供される単なるパブリック DNS です。
以下は、makePSOCKcluster
関数の一部をmakePSOCKcluster1
ほぼ同じにするように適応させた私の現在の試みです。
rscript
ubuntu インスタンスで予想されるものと一致するようにパラメーターを指定しubuntu
、ubuntu EC2 インスタンスでログインするユーザー名として を指定しました。
makePSOCKcluster1 <- function (names, ...) {
if (is.numeric(names))
names <- rep("localhost", names[1])
options <- parallel:::addClusterOptions(parallel:::defaultClusterOptions, list(...))
cl <- vector("list", length(names))
for (i in seq_along(cl)) cl[[i]] <- newPSOCKnode1(names[[i]],
options = options, rank = i)
class(cl) <- c("SOCKcluster", "cluster")
cl
}
newPSOCKnode1 <- function (machine = "localhost", ..., options = parallel:::defaultClusterOptions,
rank)
{
options <- options
if (is.list(machine)) {
options <- options
machine <- machine$host
}
outfile <- parallel:::getClusterOption("outfile", options)
master <- if (machine == "localhost")
"localhost"
else parallel:::getClusterOption("master", options)
port <- parallel:::getClusterOption("port", options)
manual <- parallel:::getClusterOption("manual", options)
timeout <- parallel:::getClusterOption("timeout", options)
methods <- parallel:::getClusterOption("methods", options)
useXDR <- parallel:::getClusterOption("useXDR", options)
env <- paste("MASTER=", master, " PORT=", port, " OUT=",
outfile, " TIMEOUT=", timeout, " METHODS=", methods,
" XDR=", useXDR, sep = "")
arg <- "parallel:::.slaveRSOCK()"
rscript <- if (parallel:::getClusterOption("homogeneous", options)) {
shQuote(parallel:::getClusterOption("rscript", options))
}
else "Rscript"
cmd <- paste(rscript, "-e", shQuote(arg), env)
renice <- parallel:::getClusterOption("renice", options)
if (!is.na(renice) && renice)
cmd <- sprintf("nice +%d %s", as.integer(renice), cmd)
if (manual) {
cat("Manually start worker on", machine, "with\n ",
cmd, "\n")
flush.console()
}
else {
if (machine != "localhost") {
rshcmd <- parallel:::getClusterOption("rshcmd", options)
user <- parallel:::getClusterOption("user", options)
cmd <- shQuote(cmd)
cmd <- paste(rshcmd, "-v -l", user, machine, cmd)
print(cmd)
}
if (.Platform$OS.type == "windows") {
system(cmd, wait = FALSE, input = "")
}
else system(cmd, wait = FALSE)
}
print("ssh done!!! about to start socketConnection....")
con <- socketConnection("localhost", port = port, server = TRUE,
blocking = TRUE, open = "a+b", timeout = timeout)
print("socketConnection complete!!!")
structure(list(con = con, host = machine, rank = rank), class = if (useXDR)
"SOCKnode"
else "SOCK0node")
}
hosts <- c("ec2-xxx-xx-xxx-xxxx.zone.compute.amazonaws.com","ec2-xx-xxx-xxx-xxx.zone.compute.amazonaws.com")
# the code to try and connect to the actual EC2 instance...
cl1 <- makePSOCKcluster1(hosts, user="ubuntu", rscript="/usr/lib/R/bin/Rscript", port=8787)
[1] "ssh -v -l ubuntu ec2-xxxxxxxxxxx.zone.compute.amazonaws.com \"'/usr/lib/R/bin/Rscript' -e 'parallel:::.slaveRSOCK()' MASTER=local.machine.name PORT=8787 OUT=/dev/null TIMEOUT=2592000 METHODS=TRUE XDR=TRUE\""
[1] "ssh done!!! about to start socketConnection...."
OpenSSH_5.2p1, OpenSSL 0.9.8r 8 Feb 2011
debug1: Reading configuration data /etc/ssh_config
debug1: Connecting to ec2-xxxxxxxxxxx.zone.compute.amazonaws.com [xx.xxx.xx.x.x] port 22.
debug1: Connection established.
debug1: identity file /Users/username/.ssh/identity type -1
debug1: identity file /Users/username/.ssh/id_rsa type 1
debug1: identity file /Users/username/.ssh/id_dsa type 2
debug1: Remote protocol version 2.0, remote software version OpenSSH_5.9p1 Debian-5ubuntu1
debug1: match: OpenSSH_5.9p1 Debian-5ubuntu1 pat OpenSSH*
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_5.2
debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug1: kex: server->client aes128-ctr hmac-md5 none
debug1: kex: client->server aes128-ctr hmac-md5 none
debug1: SSH2_MSG_KEX_DH_GEX_REQUEST(1024<1024<8192) sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_GROUP
debug1: SSH2_MSG_KEX_DH_GEX_INIT sent
debug1: expecting SSH2_MSG_KEX_DH_GEX_REPLY
Warning: Permanently added 'ec2-xx-xx-xxx-xxx-xx.ap-southeast-1.compute.amazonaws.com,xx.xxx.xxx.xx.x' (RSA) to the list of known hosts.
debug1: ssh_rsa_verify: signature correct
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug1: SSH2_MSG_NEWKEYS received
debug1: SSH2_MSG_SERVICE_REQUEST sent
debug1: SSH2_MSG_SERVICE_ACCEPT received
debug1: Authentications that can continue: publickey
debug1: Next authentication method: publickey
debug1: Offering public key: /Users/username/.ssh/id_rsa
debug1: Server accepts key: pkalg ssh-rsa blen 277
debug1: Authentication succeeded (publickey).
debug1: channel 0: new [client-session]
debug1: Requesting no-more-sessions@openssh.com
debug1: Entering interactive session.
debug1: Sending command: '/usr/lib/R/bin/Rscript' -e 'parallel:::.slaveRSOCK()' MASTER=local.machine.name PORT=8787 OUT=/dev/null TIMEOUT=2592000 METHODS=TRUE XDR=TRUE
debug1: client_input_channel_req: channel 0 rtype exit-status reply 0
debug1: channel 0: free: client-session, nchannels 1
debug1: fd 0 clearing O_NONBLOCK
debug1: fd 1 clearing O_NONBLOCK
debug1: fd 2 clearing O_NONBLOCK
Transferred: sent 2352, received 2400 bytes, in 20.0 seconds
Bytes per second: sent 117.5, received 119.9
debug1: Exit status 1
OS X 10.6.8 で Mac を使用して Debian Ubunutu インスタンスに接続しています。EC2 インスタンスに接続して並列処理を実行するより良い方法があれば、人々が知っていることも非常に役立ちます。
最終的な目標はforeach
、クラスターが登録されたら、この処理を実行するために使用することです。
また、私が疑問に思っていた副次的な質問として、プロセスを並行して実行することと MPI を使用することに関連する速度/処理の長所と短所は何ですか? または他の方法?
前もって感謝します!
EDITmakePSOCKcluster
別のEC2インスタンスから開始すると機能するようになり、機能が機能し、クラスターオブジェクトの場所parLapply
を使用して登録することもできますが、何らかの理由で...機能しません...エラーが発生します:registerDoParallel(cl1)
cl1
foreach
%dopar%
Error in serialize(data, node$con) : error writing to connection
また
Error in unserialize(node$con) : error reading from connection
showConnections()
これを次の出力として見ると、接続は問題ないようです。
> showConnections()
description class mode text isopen can read can write
3 "<-ip-xx-xxxx-x-xxx.zone.compute.internal:10187" "sockconn" "a+b" "binary" "opened" "yes" "yes"
4 "<-ip-yy-yyyy-y-yyyy.zone.compute.internal:10187" "sockconn" "a+b" "binary" "opened" "yes" "yes"
5 "<-ip-zz-zzzz-z-zzzz.zone.compute.internal:10187" "sockconn" "a+b" "binary" "opened" "yes" "yes"
>
ここでx
、y
&z
はさまざまな IP アドレスを表します....例は、のヘルプ ファイルに記載されている例からforeach
直接出てきます。前....foreach
clusterCall
clusterExport
clusterEvalQ
parallel
私はまだMacから接続できるようにしたい...しかし、foreachを使用して並列処理を実行できるようにしたい...追加情報が役立つことを願っています