0

I have to run some benchmarks on a a computer cluster which uses LSF as a platform to submit jobs. I need to run these Benchmarks on different databases. Some of them need to run a server before listening to connections from the client (Like PostgreSQL or Redis).

Is there an way to run the Server on the Cluster using LSF?

Bafla13
  • 132
  • 2
  • 11

1 Answers1

0

Batch schedulers are all about controlling what program/process can use what resource (cores, mem, licenses, etc). So long lived services like databases are started outside of the batch schedulers control.

If the databases live just the lifetime of the job, then start and stop them in your job script.

Michael Closson
  • 902
  • 8
  • 13