Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用以下两个命令将输出流回提交机器:
stream_output = True output = out.txt
是否可以将输出流式传输到提交机器上的标准输出而不是文件 out.txt?
使用提交作业后condor_submit,没有任何内容可以流式传输标准输出。但是,您可以通过使用stream_outputandtail -f out.txt或或者,或者如果您不想使用stream_output,您可以使用condor_tail -f来查看执行节点上正在运行的作业的 stdout。
condor_submit
stream_output
tail -f out.txt
condor_tail -f