返回码 10 在 R 文档中表示
我有一组 R 作业应该提交给秃鹰,当我将作业提交给秃鹰时,它们不会运行,当我检查计划日志文件时,作业正在退出,状态代码为 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
这是我的计划日志文件:
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
对此的任何想法都会受到赞赏..
谢谢
I have group of R jobs that should be submitted to the condor when I submit the jobs to the condor, they don't run and when I checked the Sched Log files the jobs are exiting with status code 10. Can anyone explain the meaning of this?
Here is my submit file:
# 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
Here is my Sched Log file:
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
Any Ideas on this are aprreciated..
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的提交脚本看起来几乎像这样,除了我有
这样的方式Condor不会将其复制到执行目录中。
My submit script looks almost like that, except that I have
That way Condor doesn't make a copy of it into the execute directory.