From: Esteban Freire <[EMAIL PROTECTED]>
Subject: [gt-user] Globus + SGE installation
Date: Fri, 05 Sep 2008 14:41:33 +0200
> I'm trying the integration of SGE (GE 6.1u3) + Globus (globus-4.0.7),
> but I still have the same old problem which I had in previous attempts.
> I'm trying the Globus + SGE integration provide by the LESC,
> http://www.lesc.ic.ac.uk/projects/SGE-GT4.html
>
> I can send the jobs with Fork correctly and I can send jobs with *qsub*
> correctly too, and besides I have enabled *reporting_params
> reporting=true* and accessible for globus.
add "joblog=true" to reporting_params.
SGE-seg-module wait for "job_log" line in SGE reportlog.
In globus_scheduler_event_generator_sge-1.1/seg_sge_module.c ,
else if (strstr(fields[1], "job_log") == fields[1])
{
/* Job state change. */
if (strstr(fields[3], "pending") == fields[3])
{
SEG_SGE_DEBUG(SEG_SGE_DEBUG_INFO,
("New event: job %s now pending\n", fields[4]));
rc = globus_scheduler_event_pending(stamp, fields[4]);
}
else if (strstr(fields[3], "delivered") == fields[3])
{
SEG_SGE_DEBUG(SEG_SGE_DEBUG_INFO,
("New event: job %s now active\n", fields[4]));
rc = globus_scheduler_event_active(stamp, fields[4]);
}
else if (strstr(fields[3], "deleted") == fields[3])
{
SEG_SGE_DEBUG(SEG_SGE_DEBUG_INFO,
("New event: job %s now completed\n", fields[4]));
rc = globus_scheduler_event_done(stamp, fields[4], 0);
}
--
AIST ApGrid Support Team
SOUM Corporation
Akihiro IIJIMA <[EMAIL PROTECTED]>