24小时热门版块排行榜    

Znn3bq.jpeg
查看: 550  |  回复: 6
当前主题已经存档。

TIGERYZZ

金虫 (小有名气)

[交流] 【求助】请教torque问题

各位,我们集群使用torque管理,然后计算结果要在计算完毕后输出e,o文件。
想请问能否采用qstat或者别的命令,随时查看到正在运行的任务的屏幕输出,以便及时调整,谢谢。
回复此楼

» 猜你喜欢

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

fengya0785

银虫 (小有名气)

★ ★
TIGERYZZ(金币+1,VIP+0):thanks~~ 7-20 21:53
mingdong(金币+1,VIP+0):感谢交流! 8-2 08:34
torque好像是没有这功能,但你可以在提交时重定向输出到文件里,就可以看到屏幕输出了。
E
2楼2009-07-20 15:04:45
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

ma_chao

新虫 (初入文坛)

★ ★
mingdong(金币+1,VIP+0):感谢交流! 8-2 08:34
TIGERYZZ(金币+1,VIP+0): 8-2 10:53
重定向到文件,然后可以用watch + cat 来自动重复看

可以用,但不确定对资源的损耗

呵呵,fengya0785  
3楼2009-08-02 03:32:04
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

solocheng

荣誉版主 (文坛精英)

黑洞洞主

优秀版主

过来学习了,厉害
你来了,我信你不会走;你走了,我当你没来过。
4楼2009-08-02 12:01:10
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

fengya0785

银虫 (小有名气)

引用回帖:
Originally posted by ma_chao at 2009-8-2 03:32:
重定向到文件,然后可以用watch + cat 来自动重复看

可以用,但不确定对资源的损耗

呵呵,fengya0785  

5楼2009-08-03 11:31:56
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

TIGERYZZ

金虫 (小有名气)

还请教个问题
我能否在作业运行过程中,更改作业的时间呢?
也就是更改提交作业时的walltime呢?
6楼2009-08-05 08:13:47
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

123qweasd7962

★ ★ ★ ★ ★ ★
wuli8(金币+3,VIP+0):3KS 8-20 13:36
TIGERYZZ(金币+3,VIP+0):这个是perl写的?好专业……好好看看去,谢谢了 8-20 21:00
可以参考使用qpeek

#!/usr/bin/perl

# qpeek:  Peek into a job's output spool files
# Copyright 2001, Ohio Supercomputer Center
#
# Usage:  qpeek [options] JOBID
#
# Options:
#   -c      Show all of the output file ("cat", default)
#   -h      Show only the beginning of the output file ("head"
#   -t      Show only the end of the output file ("tail"
#   -f      Show only the end of the file and keep listening ("tail -f"
#   -#      Show only # lines of output
#   -e      Show the stderr file of the job
#   -o      Show the stdout file of the job
#   -?      Display help

$tool="cat";
$numlines="";
$suffix="OU";
$spool="/var/spool/pbs/spool";
$host="oscbw";

while ( $ARGV[0] =~ /^-.*/ )
  {
    if ( $ARGV[0] eq "-c" )
      {
        $tool="cat";
      }
    elsif ( $ARGV[0] eq "-f" )
      {
        $tool="tail -f";
      }
    elsif ( $ARGV[0] eq "-h" )
      {
        $tool="head";
      }
    elsif ( $ARGV[0] eq "-t" )
      {
        $tool="tail";
      }
    elsif ( $ARGV[0] =~ /^-[0-9]+$/ )
      {
        $numlines=$ARGV[0];
      }
    elsif ( $ARGV[0] eq "-e" )
      {
        $suffix="ER"
      }
    elsif ( $ARGV[0] eq "-o" )
      {
        $suffix="OU"
      }
    elsif ( $ARGV[0] eq "-?" || $ARGV[0] eq "-help" )
      {
        print STDERR < qpeek:  Peek into a job's output spool files

Usage:  qpeek [options] JOBID

Options:
   -c      Show all of the output file ("cat", default)
   -h      Show only the beginning of the output file ("head"
   -t      Show only the end of the output file ("tail"
   -f      Show only the end of the file and keep listening ("tail -f"
   -#      Show only # lines of output
   -e      Show the stderr file of the job
   -o      Show the stdout file of the job (default)
   -?      Display this help message
EOF
        exit;
      }
    else
      {
        print STDERR "qpeek:  Unrecognized option $ARGV[0] ignored\n";
      }
    shift(@ARGV);
  }

$jobid=shift(@ARGV);
$jobid=~s/\.[A-z0-9.]+$//;
die "No jobid given!\n" if ( $jobid eq "" );

$node=&mothersuperior($jobid);
die "Job $jobid is not running!\n" if ( $node eq "" );

exec "rsh $node $tool $numlines $spool/$jobid.$host.$suffix\n";


sub mothersuperior
{
  local($jobid,$node);
  $jobid=$_[0];
  $node="";
  open(QSTAT,"qstat -f $jobid |";
  while ( )
    {
      chop;
      if ( $_ =~ /exec_host/ )
        {
          ($keyword,$node)=split(/=/);
          $node=~s:/[0-9]+[A-z0-9/+]*::;
        }
    }
  $node;
}

[ Last edited by 123qweasd7962 on 2009-8-20 at 11:47 ]
7楼2009-08-20 11:44:23
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 TIGERYZZ 的主题更新
普通表情 高级回复 (可上传附件)
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 273求调剂 +51 麦小叮当 2026-04-06 58/2900 2026-04-10 15:54 by jiajinhpu
[考研] 人工智能320调剂08工类还有机会吗 +6 振—TZ 2026-04-10 6/300 2026-04-10 15:19 by zl8213662
[考研] 求调剂 +11 雪逢冬 2026-04-10 11/550 2026-04-10 14:38 by Abskk
[考研] 求调剂 +9 翩翩一书生 2026-04-09 9/450 2026-04-10 11:43 by wp06
[考研] 0702物理学学硕299求调剂 +6 祁柒连 2026-04-06 6/300 2026-04-10 11:10 by Roomoo
[考研] 一志愿双非085400电子信息344 求调剂,对材料和化学方向也感兴趣 +8 无情的小羊 2026-04-09 9/450 2026-04-10 09:30 by 松花缸1201
[考研] 293求调剂 +5 勇远库爱314 2026-04-08 5/250 2026-04-10 08:46 by vgtyfty
[考研] 一志愿华工085600 331分 +6 天下ww 2026-04-09 6/300 2026-04-09 18:59 by l_paradox
[考研] 312求调剂 +3 李鸿飞飞 2026-04-06 3/150 2026-04-09 17:32 by wp06
[考研] 307分材料专业求调剂 +12 Hll胡 2026-04-05 12/600 2026-04-08 16:33 by luoyongfeng
[考研] 化工学硕 285求调剂 +26 Wisjxn 2026-04-07 26/1300 2026-04-08 14:42 by screening
[考研] 313求调剂 +3 十六拾陆 2026-04-07 3/150 2026-04-07 23:20 by lbsjt
[考研] 计算机11408 287 求调剂 +3 LiLe5 2026-04-07 3/150 2026-04-07 23:15 by shanqishi
[考研] 277求调剂 数一104分 +9 瓶子PZ 2026-04-05 14/700 2026-04-07 17:52 by 蓝云思雨
[考研] 081700化学工程与技术 一志愿中海洋 323 求调剂学校 +19 披星河 2026-04-03 19/950 2026-04-07 15:14 by 尽舜尧1
[考研] 307求调剂 +3 Youth@@ 2026-04-07 3/150 2026-04-07 09:25 by 小黑不怕难
[考研] 一志愿河北工业大学材料工程,初试344求专硕调剂 +6 15933906766 2026-04-05 6/300 2026-04-06 13:21 by 无际的草原
[考研] 22408 总分320,一篇论文二作,两个国三,求调剂 +3 Leomulufu 2026-04-04 5/250 2026-04-05 19:04 by chongya
[考研] 一志愿北交大材料工程总分358求调剂 +6 cs0106 2026-04-05 6/300 2026-04-05 16:34 by imissbao
[考研] 材料化工306分找合适调剂 +14 沧海轻舟e 2026-04-04 14/700 2026-04-05 09:53 by 朱云虎202
信息提示
请填处理意见