Re: [HEADS UP] Camel clustering bits

2017-06-16 Thread Claus Ibsen
Hi Thanks. As we introduced a new package in camel-core, do you mind adding a package.html for javadoc, and I think you may need to add it to the pom.xml as well for the javadoc plugin On Fri, Jun 16, 2017 at 5:39 PM, Luca Burgazzoli wrote: > First bits merged > > --- >

Re: [HEADS UP] Camel clustering bits

2017-06-16 Thread ugol
+1 So now I can finally use it for the camel-jgroups-master! Thx Luca On Fri, 16 Jun 2017 at 17:40, Luca Burgazzoli wrote: > First bits merged > > --- > Luca Burgazzoli > > > On Thu, Jun 15, 2017 at 11:05 AM, Nicola Ferraro > wrote: > > +1 > > > >

Re: [HEADS UP] Camel clustering bits

2017-06-16 Thread Luca Burgazzoli
First bits merged --- Luca Burgazzoli On Thu, Jun 15, 2017 at 11:05 AM, Nicola Ferraro wrote: > +1 > > Really a great work Luca. It's completely separated from the route policy > so that we can also implement the generic master component on top of it. > But it can also be

Re: [HEADS UP] Camel clustering bits

2017-06-15 Thread Nicola Ferraro
+1 Really a great work Luca. It's completely separated from the route policy so that we can also implement the generic master component on top of it. But it can also be used for other purposes by just implementing a listener interface. The cluster view is also a clean way to monitor the cluster

Re: [HEADS UP] Camel clustering bits

2017-06-14 Thread Claus Ibsen
+1 Great work Luca. Its good to see this coming in camel-core, as we now have many more Camel components that does clustering and leader elections. It makes good benefit to have some common reusable code from camel-core. On Wed, Jun 14, 2017 at 11:36 AM, Luca Burgazzoli

[HEADS UP] Camel clustering bits

2017-06-14 Thread Luca Burgazzoli
Hello, I've been working on CAMEL-11362 to create a leader election service in recent times and I've ended up with some initial bits of a potential clustering service for Camel [1]. So fare there are a few simple interfaces: - CamelClusterService - CamelClusterView - CamelClusterMember The