Hangfire single server storage, multiple servers

Hi Guys,

We are using a single server storage MS SQL Server and we have multiple servers.
We want to have recurrent jobs on all the servers.
How can we implement this?

I saw multiple solution an Queues in the forum section, but it is not so clear.

Simple variation of the service discovery pattern.
See my answer here:

http://hangfire.discourse.group/t/run-the-same-recurringjob-at-the-same-time-in-multiples-servers-instances/5487/8?u=gfoley83

Is it not possible to have hangfire server and db running in all servers and clients enques the same job in all the server?

UPDATE:

Solved the problem using different queues on every machine and setting dynamic job in on every server.