1 Reply Latest reply on Jun 7, 2011 4:03 AM by fsotest

    Clustered EJB3 Timer question

    fsotest

      I have followed http://community.jboss.org/wiki/DeployingEJB3TimersInCluster and it works as long as you dont have the same application (which creates timers) in multiple clusters. The database field TARGETID contains values like this

       

      [target=jboss.j2ee:ear=jb.tes.rmitest.ear,jar=jb.tes.rmitest.ejb.jar,name=TimerTestBean,service=EJB3]

       

      It does not contain any information about which cluster it is running in. So if the same application is running in more than one cluster, a timer created in one cluster will have also get started in the other clusters (at the master node).

       

      One way to solve this is by specifying a database schema inside ejb2-timer-service.xml file and then use difference schemas for each cluster. But unfortunately this requires us to coordinate with DBAs when new clusters are created, which is not something we want to do.

       

      Therefore, is there any other way to make ejb3 timers in one cluster totally independent of timers in other clusters. Any comment would be nice. BTW. I am using jboss 5.1 (EAP)

        • 1. Re: Clustered EJB3 Timer question
          fsotest

          Just another question. The setup of clustered ejb timers forces all timers to be cluster aware (running only at one server in the cluster). What I would like is that some timers are cluster-aware while other timers runs at every server in the cluster. The best thing would be that the developer decides what type of timer he wants to use. Is there any way to achieve this?