Failover node

Let’s says you are using a HTTP node for example and you make an API call but your account has hit a API limit or something. You have an alternative service to do the same job as a backup .

If API node A fails then failover to API node B and make the request again.

Currently this isn’t possible without a bunch of IF nodes, merges and whatnot.

@RedPacketSec
Have you seen the error output path. Instead of just continue on fail you can have an extra path that is used for errors. Saves you an if node checking if there is an error.

But will that path then take the same input data from the node Or output the error reply?

Input data + error are returned on that path.

1 Like