- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 08-08-2022 07:38 AM
(1031 views)
All,
Master flow has sub flows in it. I tried to mark one job has complete to trigger another sub flow as it is waiting to complete this job. It is showing below ERROR but nothing is running on the server when I checked ps -ef |grep -I lsf . How can we check which job is running in this flow on the server?
5 REPLIES 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Process Manager launches jobs in LSF, do you see the job in your bjobs output?
In Flow Manager if you open the incomplete flow it should indicate which jobs have completed and which have not.
In Flow Manager if you open the incomplete flow it should indicate which jobs have completed and which have not.
--
Greg Wootton | Principal Systems Technical Support Engineer
Greg Wootton | Principal Systems Technical Support Engineer
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
no jobs are running and I don't see anything in flow manager. one of the user manually tried to set off a job from within flow manager and it didn't start but it seems to think it did as I can in the flow manager user is triggered a job in the waiting flow.
bjobs No unfinished job found
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Running bjobs as root would only show jobs owned by root. You would want to add the option "-u all" to show all user's jobs:
[sas@trcv003 ~]$ bsub sleep 30
Job <48105> is submitted to default queue <normal>.
[sas@trcv003 ~]$ sudo su -
Last login: Tue Aug 2 10:20:32 EDT 2022 on pts/4
[root@trcv003 ~]# bjobs
No unfinished job found
[root@trcv003 ~]# bjobs -u all
JOBID USER STAT QUEUE FROM_HOST EXEC_HOST JOB_NAME SUBMIT_TIME
48105 sas RUN normal trcv003.trc trcv051.trc sleep 30 Aug 8 13:51
[sas@trcv003 ~]$ bsub sleep 30
Job <48105> is submitted to default queue <normal>.
[sas@trcv003 ~]$ sudo su -
Last login: Tue Aug 2 10:20:32 EDT 2022 on pts/4
[root@trcv003 ~]# bjobs
No unfinished job found
[root@trcv003 ~]# bjobs -u all
JOBID USER STAT QUEUE FROM_HOST EXEC_HOST JOB_NAME SUBMIT_TIME
48105 sas RUN normal trcv003.trc trcv051.trc sleep 30 Aug 8 13:51
--
Greg Wootton | Principal Systems Technical Support Engineer
Greg Wootton | Principal Systems Technical Support Engineer
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Yes , I tried with bjobs -u all and there is no single job running under this flow/user. Not sure why it is giving that ERROR.
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Sounds like Process Manager might be having a problem then, you may want to engage Technical Support.
--
Greg Wootton | Principal Systems Technical Support Engineer
Greg Wootton | Principal Systems Technical Support Engineer