Im looking at various design considerations for deploying applications in a cluster environment and how to sync resources
The first thing that comes in my mind is when an application needs to share a state among many objects, a state that needs to have a single instance, the solution is to store the state in a static variable. This approach would work fine on a single server however would not work on cluster environment as each node in the cluster would maintain its own copy of the static variable, thereby creating as many different values for the state as the number of nodes in the cluster.
So what pointers one should take into consideration while deploying applications in a cluster applications and sync various resources ?