What's the best way to stop the machines fighting, while keeping them identical to keep things simple and reduce single points of failure?
feedback
|
|
Check out this article which suggests using Hudson (now Jenkins) for the job. Excerpt:
Cheers | |||
|
feedback
|
|
The best way is to maintain some kind of global lock right in the script. This lock should be reachable from every server so there are two obvious choices here: using a DB (and you already have it) and using a distributed file system (and you don't have it probably). And of course you will have to modify behaviour of the script to set and to remove the lock. | |||
|
feedback
|