Custom Query (431 matches)
Results (40 - 42 of 431)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#764 | fixed | IZ3217: "man host_conf" refers to 'cluster global "host" complex (see complex(5))' | Dave Love <d.love@…> | reuti |
Description |
[Imported from gridengine issuezilla http://gridengine.sunsource.net/issues/show_bug.cgi?id=3217] Issue #: 3217 Platform: All Reporter: reuti (reuti) Component: gridengine OS: All Subcomponent: man Version: 6.2u4 CC: None defined Status: NEW Priority: P3 Resolution: Issue type: DEFECT Target milestone: --- Assigned to: andreas (andreas) QA Contact: andreas URL: * Summary: "man host_conf" refers to 'cluster global "host" complex (see complex(5))' Status whiteboard: Attachments: Issue 3217 blocks: Votes for issue 3217: Opened: Thu Dec 24 04:24:00 -0700 2009 ------------------------ In the section "load_scaling" the man page refers to 'cluster global "host" complex (see complex(5))' which looks like a leftover from Codine 5.3 as there is no host complex in SGE 6.0.IIRC the load values which should be scaled must appear in the section "report_variables" nowadays. |
|||
#773 | fixed | IZ3231: Checkpointing: Available pseudo variables nowhere listed | Dave Love <d.love@…> | reuti |
Description |
[Imported from gridengine issuezilla http://gridengine.sunsource.net/issues/show_bug.cgi?id=3231] Issue #: 3231 Platform: All Reporter: reuti (reuti) Component: gridengine OS: All Subcomponent: man Version: 6.2u5alpha CC: None defined Status: NEW Priority: P3 Resolution: Issue type: DEFECT Target milestone: --- Assigned to: andreas (andreas) QA Contact: andreas URL: * Summary: Checkpointing: Available pseudo variables nowhere listed Status whiteboard: Attachments: Issue 3231 blocks: Votes for issue 3231: Opened: Tue Jan 26 07:28:00 -0700 2010 ------------------------ Applies to 6.2u5 final: The available pseudo variables inside the checkpointing interface: char *ckpt_variables[] = { "host", "job_owner", "job_id", "job_name", "queue", "job_pid", "ckpt_dir", "ckpt_signal", NULL }; are nowhere mentioned in the man pages. They could go to `man sge_ckpt` or `man checkpoint`. I would prefer the latter. Also the variable $SGE_CKPT_DIR and $SGE_CKPT_ENV could be mentioned there for completeness. They are on the `man qsub` page (submit.1), but repeating them at an appropriate location would be fine though. |
|||
#777 | fixed | IZ3239: -terse option in sge_request files is ignored | Dave Love <d.love@…> | macona |
Description |
[Imported from gridengine issuezilla http://gridengine.sunsource.net/issues/show_bug.cgi?id=3239] Issue #: 3239 Platform: Other Reporter: macona (macona) Component: gridengine OS: Linux Subcomponent: execution Version: 6.2u5 CC: None defined Status: NEW Priority: P3 Resolution: Issue type: DEFECT Target milestone: --- Assigned to: rayson (rayson) QA Contact: pollinger URL: * Summary: -terse option in sge_request files is ignored Status whiteboard: Attachments: Issue 3239 blocks: Votes for issue 3239: Opened: Fri Feb 12 15:53:00 -0700 2010 ------------------------ The "-terse" qsub option, when specified in an sge_request file, is ignored. However, when given on the command line, -terse works as expected. GE6.2u5 $ cat .sge_request -terse -V -p 0 -cwd $ qsub /usr/local/sge/examples/jobs/simple.sh Your job 1669994 ("simple.sh") has been submitted $ qsub -terse /usr/local/sge/examples/jobs/simple.sh 1669995 ------- Additional comments from rayson Fri Feb 12 18:52:51 -0700 2010 ------- The problem is in clients/qsub/qsub.c : Currently, the check is done on the command line options only: /* * Check if -terse is requested */ if (opt_list_has_X(opts_cmdline, "-terse")) { has_terse = true; } A similar check should be done on opts_defaults, which holds options from the default files. Or, if needed, do the check after the merge of all the options: /* * Merge all commandline options and interprete them */ opt_list_merge_command_lines(&opts_all, &opts_defaults, &opts_scriptfile, &opts_cmdline); if (opt_list_has_X(opts_all, "-terse")) { /* possible fix for 3239 */ has_terse = true; } ------- Additional comments from rayson Fri Feb 12 19:04:23 -0700 2010 ------- The fix is to check all the option lists, not just the options from the command line: hccgalaxy:/tmp/s/source> cvs diff -C4 clients/qsub/qsub.c Index: clients/qsub/qsub.c =================================================================== RCS file: /cvs/gridengine/source/clients/qsub/qsub.c,v retrieving revision 1.71 diff -C 4 -r1.71 qsub.c *** clients/qsub/qsub.c 23 Jul 2009 10:06:23 -0000 1.71 --- clients/qsub/qsub.c 13 Feb 2010 02:03:05 -0000 *************** *** 168,182 **** SGE_EXIT((void**)&ctx, 0); } /* - * Check if -terse is requested - */ - if (opt_list_has_X(opts_cmdline, "-terse")) { - has_terse = true; - } - - /* * We will only read commandline options from scripfile if the script * itself should not be handled as binary */ if (opt_list_is_X_true(opts_cmdline, "-b") || --- 168,175 ---- *************** *** 200,207 **** --- 193,207 ---- */ opt_list_merge_command_lines(&opts_all, &opts_defaults, &opts_scriptfile, &opts_cmdline); + /* + * Check if -terse is requested + */ + if (opt_list_has_X(opts_all, "-terse")) { + has_terse = true; + } + /* If "-sync y" is set, wait for the job to end. */ /* Remove all -sync switches since cull_parse_job_parameter() * doesn't know what to do with them. */ while ((ep = lGetElemStr(opts_all, SPA_switch, "-sync"))) { |
Note: See TracQuery
for help on using queries.