distributing files among clusters

2019-08-02 Thread arshad dar
Hi All, i have few camel routes which are reading from a directory say Samples. the camel is running on multiple nodes and all systems are reading files from centralized location. my question how can i distribute files equally among all nodes. -- Arshid

ID on bean after wire tap issue?

2019-08-02 Thread Sebastian Czort
Hi, Is there an issue when calling id() after a bean() call after a wireTap() call when configuring routes? It looks like the ID gets set on the WireTapDefinition instead of on the BeanDefinition, which is illustrated by the failing test below. Is there a preferred workaround for mocking a bean

Re: ID on bean after wire tap issue?

2019-08-02 Thread Sebastian Czort
OK. Ending the wire tap works. I.e. doing .wireTap("direct:null").end() instead of .wireTap("direct:null") On Sat, Aug 3, 2019 at 12:02 AM Sebastian Czort wrote: > Hi, > > Is there an issue when calling id() after a bean() call after a wireTap() > call when configuring routes? > > It looks