Question

I am creating a camel project which polls the local directory and pushes the files to a FTP location. I want to apply failover mechanism to my design. If want another fuse instance to be ready, if the current node fails.

Without any failover, two fuse instances can together poll the files. But I wanted the second node to poll the files, when the first node fails.

Is this scenario possible if I use FuseFabric ? I dont want anyother product choice, I have this product with me. But I want to know whether I can achieve this using Fabric ?

I am sure, this is possible in Web service endpoints. Not sure about file based endpoints.

Was it helpful?

Solution

Yes there is a master component you can use, then only one is active at a time. And if the node fails, the another node is elected as the master.

Just put "master:someNameHere:" in front of any Camel endpoint in a route from, when you use Fuse Fabric. Where "someNameHere" is a logical name for the group.

For example

from("master:foo:ftp://bla-bla")
  .to("someWhere");
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top