Enable queues for the LSF multicluster capability
To enable queues for the LSF multicluster capability, configure a send-jobs queue in the submission cluster and a receive-jobs queue in the execution cluster.
About this task
To set up a pair of queues for the LSF multicluster capability, do the following:
Procedure
- In the submission cluster, configure a send-jobs queue that forwards work to the execution queue.
- In the execution cluster, configure a receive-jobs queue that accepts work from the cluster that contains the send-jobs queue.
Send-jobs queues
Procedure
Receive-jobs queues
Procedure
To configure a receive-jobs queue,
define the RCVJOBS_FROM parameter in the
lsb.queues queue definition. Specify a
space-separated list of cluster names.
Use the keyword allclusters to specify any remote cluster.
Examples
Begin Queue
QUEUE_NAME=send
PRIORITY=30
NICE=20
SNDJOBS_TO = rcv@allclusters
HOSTS = none
FWD_USERS=all ~ugroup1
End Queue
The following queue is both a send-jobs and receive-jobs queue, and links with multiple remote
clusters. If queue1 cannot place a job in the local cluster, it can forward the job to
queue2 in cluster2, or to queue3 in cluster3. If any queues in
clusters 2 or 3 are configured to send MultiCluster jobs to queue1, queue1 accepts
them.
Begin Queue
QUEUE_NAME=queue1
SNDJOBS_TO=queue2@cluster2 queue3@cluster3
RCVJOBS_FROM=cluster2 cluster3
PRIORITY=30
NICE=20
End Queue