distributed events and coordination for jgroups clusters in spring applications.
- Cluster member task limiting
- Clustered Event Bus
Limit a task or method call to one cluster member. This is useful for scheduled tasks that you only want running on one member. Ropeteam allows dynamic assignment of which cluster member runs a task. A task will stay assigned to the same member unless it dies, in which case it will failover to another host.
Example
@OncePerCluster
@Scheduled(fixedDelay=1000)
public void someScheduledTask() {
// method will only actually be called on one host per cluster
// the same host will always run the task unless it dies
}
Publish events to all members of the cluster. Events can be any object that can be marshalled to JSON with Jackson.
Publishing Events
@Autowired
EventPublisher publisher;
public void generateEvent() {
publisher.publish(new HelloEvent("greetings"));
}
Subscribing to Events
@EventSubscriber
public void handleHelloEvent(HelloEvent e) {
System.out.println(e.getGreeting())
}
<dependency>
<groupId>com.rei.ropeteam</groupId>
<artifactId>ropeteam</artifactId>
<version>1.0</version>
</dependency>
This project is a fork/rename of jeffskj/flock