What does a red "ready" state in the Schedule page indicate? Does it mean the scheduled job did not run or there were errors? .
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2014 07:42 PM
Shecdule Job shows Ready status in red color few times.
Few times it will run properly and few times it is becoming red in color. Is there any to see if any error logs are created for this?
- Labels:
-
Service Mapping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2014 08:27 PM
That is just a field style to show that particular job is "ready" but past its scheduled run time. There may be some other long running jobs affecting things.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2014 08:28 PM
If you personalize the style on that field it states for it to be RED it must match the following condition -
javascript:current.state == 0 && current.trigger_type != 9 && gs.dateDiff(current.next_action,gs.nowNoTZ(),true) > 0;
So it basically means that ones in RED are to occur next.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-06-2014 10:47 PM
Thanks Nick & Jim,
So, if it is in Red,then that does not mean there is some issue with the job right?
It might be red because it is waiting to be run and other jobs are running for long times, that might be possible.
Also, this job runs every 15 minutes. So if the previous job did not complete with in 15 minutes, that also might be reason to keep it in waiting. Is that correct?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2014 06:48 AM
Right, nothing wrong with the job, it just has not started when it was supposed to. Either it is running too long itself, or some other jobs are delaying things.