Use btop to move jobs relative to your first job in the queue.
By default, LSF dispatches jobs in a queue in the order of arrival (that is, first‑come‑first‑served), subject to availability of suitable server hosts.
Use the btop command to change the position of pending jobs, or of pending job array elements, to affect the order in which jobs are considered for dispatch. Users can only change the relative position of their own jobs, and LSF administrators can change the position of any users’ jobs.
In the following example, job 5311 is moved to the top of the queue. Since job 5308 is already running, job 5311 is placed in the queue after job 5308.
bjobs ‑u allJOBID USER STAT QUEUE FROM_HOST EXEC_HOST JOB_NAME SUBMIT_TIME5308 user2 RUN normal hostA hostD /s500 Oct 23 10:165309 user2 PEND night hostA /s200 Oct 23 11:045310 user1 PEND night hostB /myjob Oct 23 13:455311 user2 PEND night hostA /s700 Oct 23 18:17btop 5311Job <5311> has been moved to position 1 from top.bjobs ‑u allJOBID USER STAT QUEUE FROM_HOST EXEC_HOST JOB_NAME SUBMIT_TIME5308 user2 RUN normal hostA hostD /s500 Oct 23 10:165311 user2 PEND night hostA /s200 Oct 23 18:175310 user1 PEND night hostB /myjob Oct 23 13:455309 user2 PEND night hostA /s700 Oct 23 11:04