I have an JEE application which is clustered on two WebSphere V7 nodes. If a client changes data which is persisted to a database on node 1, I want to make sure that the data is updated immediately on node 2 as well.
I considered using an EJB timer service which does a check on the database every few minutes. But what can I do if I want to have the update to be performed on-time, without any delay on node 2 and not setting the interval to one second or so? Well I could call a servlet on node 2 from node 1 and trigger the update this way. But in this case my application has to know the http addresses of all nodes. This is not what I want. Any other suggestions? Is there a best practice for synchronizing data changes between server nodes?
