Christoph Giera created CAMEL-13691:
---------------------------------------

             Summary: Add resilience4j circuit breaker
                 Key: CAMEL-13691
                 URL: https://issues.apache.org/jira/browse/CAMEL-13691
             Project: Camel
          Issue Type: New Feature
            Reporter: Christoph Giera


Hystrix is no longer in active development, netflix uses resilience4j for new 
internal projects, seeĀ [https://github.com/Netflix/Hystrix#Hystrix%20Status]

Camel should also add a resilience4j component/java dsl.

Idea for java dsl: instead of adding resilience4j on the same level like 
hystrix add an additional level "circuitBreaker" with the childs hystrix, 
resilience4j...
{noformat}
from(endpoint)
.circuitBreaker()
.useHystrix()
.to(endpoint)
.endCircuitBreaker();{noformat}
{noformat}
from(endpoint)
.circuitBreaker()
.useResilience4j()
.to(endpoint)
.endCircuitBreaker();{noformat}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to