此代码按预期工作:
library(dplyr)
data <- list(t1 = "hello world.", t2 = "bye world")
library(doMC)
registerDoMC(3)
res <- foreach(t = data) %dopar% {
print(sprintf("processing %s", t))
data.frame(text = t) %>%
dplyr::count(text)
}
print(res)
但是,此代码仅打印“处理 hello world”。和“处理再见世界”,然后挂起(不抛出异常)。
library(dplyr)
coreNLP::initCoreNLP()
data <- list(t1 = "hello world.", t2 = "bye world")
library(doMC)
registerDoMC(3)
res <- foreach(t = data) %dopar% {
print(sprintf("processing %s", t))
coreNLP::annotateString(t)$token
}
print(res)
%dopar%
如果我更改为,上面的代码将按预期工作%do%
。
我不明白是什么导致了这种行为。为什么在内部调用 coreNLP 函数%dopar%
会导致 R 挂起但与其他包一起工作正常?这是否与 coreNLP 对 Java 的依赖有关?
这是输出sessionInfo()
:
R version 3.4.0 (2017-04-21)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 16.04.2 LTS
Matrix products: default
BLAS: /usr/lib/libblas/libblas.so.3.6.0
LAPACK: /usr/lib/lapack/liblapack.so.3.6.0
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] compiler_3.4.0