Skip to content
Prev 8484 / 21307 Next

[Bioc-devel] bplapply Processes Sometimes Stall

Hi Dario -- This didn't cause problems for me. One thing you might do is to re-use the MulticoreParam() like this

    param = bpstart(MulticoreParam(25))
    lapply(1:20, function(variety) bplapply(1:100, function() {}, BPPARAM = param))
    bpstop(param)

Also there have been a number of changes in devel and if possible it would be good to know whether the problem still appears there.

It might be interesting to see the number of connections open when the process hangs, from the command line while R is still running

   ~$ lsof -i |grep -c R

Martin