Albedo <[EMAIL PROTECTED]> writes:

> Hello.
> 
> Does anoby know if it's safe to run two instances of R
> (in R CMD BATCH mode) in the same directory ?
> 
> If so, is it safe to run them on different computers
> (with access to the same filesystem via NFS) ?

You have to worry about race conditions on file writes (e.g. running
the *same* script twice could be asking for trouble if both processes
want to write foo.Rout). Also watch out for seed issues when
simulating, if both processes restore the same seed from a saved
workspace, they'll be generating exactly the same sequence of random
numbers, which may or may not be what you want. Apart from that you
should be OK.

-- 
   O__  ---- Peter Dalgaard             Blegdamsvej 3  
  c/ /'_ --- Dept. of Biostatistics     2200 Cph. N   
 (*) \(*) -- University of Copenhagen   Denmark      Ph: (+45) 35327918
~~~~~~~~~~ - ([EMAIL PROTECTED])             FAX: (+45) 35327907

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to