我有一组应该提交给condor的R作业,当我将作业提交给condor时,它们没有运行,当我检查Sched Log文件时,作业正在退出,状态代码为10。有人能解释一下这是什么意思吗?
这是我的提交文件:
# Submit file for combining the output
universe = vanilla
Executable = C:\Progra~1\R\R-2.11.1-x64\bin\Rscript.exe
getenv = true
transfer_executable = true
Output = AddTwo.out
Log = AddTwo.log
error = AddTwo.error
input = AddTwo.R
arguments = AddTwo.R
queue 以下是我的Sched Log文件:
04/21 16:20:06 IWD: C:\condor\execute\dir_280
04/21 16:20:06 Input file: C:\condor\execute\dir_280\AddTwo.R
04/21 16:20:06 Output file: C:\condor\execute\dir_280\AddTwo.out
04/21 16:20:06 Error file: C:\condor\execute\dir_280\AddTwo.error
04/21 16:20:06 Renice expr "10" evaluated to 10
04/21 16:20:06 About to exec C:\condor\execute\dir_280\condor_exec.exe
sim_boot_omega_3_1_3.R
04/21 16:20:06 Create_Process succeeded, pid=2644
04/21 16:20:06 Process exited, pid=2644, status=10任何关于这方面的想法都会得到重视..
谢谢
发布于 2011-04-29 21:15:45
我的提交脚本看起来就像这样,除了我有
transfer_executable = FALSE这样,Condor就不会将其复制到execute目录中。
https://stackoverflow.com/questions/5759161
复制相似问题