我已經在這個主題上看到了其他一些帖子,但沒有一個與我遇到的問題完全一樣。但這裏有雲:
我使用
cores <- detectCores() cl <- makeCluster(8L,outfile="output.txt") registerDoParallel(cl) x <- foreach(i = 1:length(y), .combine='list',.packages=c('httr','jsonlite'), .multicombine=TRUE,.verbose=F,.inorder=F) %dopar% {function(y[i])}
這往往能正常工作,但現在引發錯誤並聯運行功能:
Error in serialize(data, node$con) : error writing to connection
在輸出的檢查.txt文件我看到:
starting worker pid=11112 on localhost:11828 at 12:38:32.867
starting worker pid=10468 on localhost:11828 at 12:38:33.389
starting worker pid=4996 on localhost:11828 at 12:38:33.912
starting worker pid=3300 on localhost:11828 at 12:38:34.422
starting worker pid=10808 on localhost:11828 at 12:38:34.937
starting worker pid=5840 on localhost:11828 at 12:38:35.435
starting worker pid=8764 on localhost:11828 at 12:38:35.940
starting worker pid=7384 on localhost:11828 at 12:38:36.448
Error in unserialize(node$con) : embedded nul in string: '\0\0\0\006SYMBOL\0\004\0\t\0\0\0\003')'\0\004\0\t\0\0\0\004expr\0\004\0\t\0\0\0\004expr\0\004\0\t\0\0\0\003','\0\004\0\t\0\0\0\024SYMBOL_FUN'
Calls: <Anonymous> ... doTryCatch -> recvData -> recvData.SOCKnode -
unserialize
Execution halted
這個錯誤我間歇性的。內存很豐富(32GB),內存中沒有其他大的R對象。並行代碼中的函數從雲中檢索一些小的json數據對象,並將它們放入R對象 - 因此沒有大數據文件。我不知道爲什麼它偶爾會看到一個嵌入的nul並停下來。
我有一個類似的問題,從一個函數,也從雲中的csv文件。直到現在,這兩個函數都能在R 3.3.0和R 3.4.0下正常工作。
我在Windows上使用R 3.4.1和RStudio 1.0.143。
這裏是我的sessionInfo
sessionInfo()
R version 3.4.1 (2017-06-30)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows 7 x64 (build 7601) Service Pack 1
Matrix products: default
locale:
[1] LC_COLLATE=English_United States.1252 LC_CTYPE=English_United
States.1252 LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C LC_TIME=English_United States.1252
attached base packages:
[1] parallel stats graphics grDevices utils datasets methods base
other attached packages:
[1] RJSONIO_1.3-0 RcppBDT_0.2.3 zoo_1.8-0 data.table_1.10.4
doParallel_1.0.10 iterators_1.0.8
[7] RQuantLib_0.4.2 foreach_1.4.3 httr_1.2.1
loaded via a namespace (and not attached):
[1] Rcpp_0.12.12 lattice_0.20-35 codetools_0.2-15 grid_3.4.1
R6_2.2.2 jsonlite_1.5 tools_3.4.1
[8] compiler_3.4.1
UPDATE
現在我得到另一個類似的錯誤:
Error in unserialize(node$con) : ReadItem: unknown type 100, perhaps written by later version of R
嵌入式NUL錯誤似乎已經消失。我也嘗試刪除.Rhistory和.Rdata,並刪除我的包子文件夾並重新加載所有的包。至少這個新的錯誤似乎一致。我找不到「未知類型100」。
也許您的環境中有大型對象在羣集上導出?嘗試將這個foreach調用放在它自己的函數中。 –
這似乎不是問題 - 我實際上刪除了環境中的所有無關對象。 – user2642948
你可以用你可以給我們的'function'來重現問題嗎? –