Camel hystrix Spring DSL does not have onFallbackViaNetwork definition

2017-11-08 Thread 차정호
Hi, Developers I’m a Camel rider and I love Camel so much. I am reviewing and trying to use the Camel Hystrix component in Spring DSL. I find there is no “onFallbackViaNetwork” tag definition in Spring DSL. Could you check this and add this feature in Spring DSL.    Thanks in

Re: Urgent: Camel Hystrix Java DSL Questions

2017-10-12 Thread Claus Ibsen
it usable in > route dsl? If yes, can you please provide a route DSL example? > Try look at the unit tests in camel-hystrix. > 3) Thanks for providing the feature in the new commit! I wonder when it > will be available and how to use it in route DSL. Can you please also > provide an

Re: Urgent: Camel Hystrix Java DSL Questions

2017-10-11 Thread LiQiang Ye
message that is processed via the hystrix has some > > state after being processed, see HystrixConstants > > > > On Tue, Oct 10, 2017 at 9:59 PM, LiQiang Ye > wrote: > >> Hi, camel friends > >> > >> I have a few questions regarding camel hystrix ja

Re: Urgent: Camel Hystrix Java DSL Questions

2017-10-11 Thread Claus Ibsen
cessed via the hystrix has some > state after being processed, see HystrixConstants > > On Tue, Oct 10, 2017 at 9:59 PM, LiQiang Ye wrote: >> Hi, camel friends >> >> I have a few questions regarding camel hystrix java dsl. >> >> I am using hystrix in a route: >> &g

Re: Urgent: Camel Hystrix Java DSL Questions

2017-10-11 Thread Claus Ibsen
at 9:59 PM, LiQiang Ye wrote: > Hi, camel friends > > I have a few questions regarding camel hystrix java dsl. > > I am using hystrix in a route: > > > from("direct:a").routeId("a_route") > .hystrix() > //question: how to print out or log

Urgent: Camel Hystrix Java DSL Questions

2017-10-10 Thread LiQiang Ye
Hi, camel friends I have a few questions regarding camel hystrix java dsl. I am using hystrix in a route: from("direct:a").routeId("a_route") .hystrix() //question: how to print out or log configurations for this particular hystrix .to("bean:abean?method=ex

Re: Camel Hystrix rethrow exception in fallback

2017-07-06 Thread Claus Ibsen
onException(Exception.class) > .process(whenException) > .end() > .process(...) > .to(direct:subflow) > .process(onWebServiceSuccess) > > from(direct:subflow) > .errorHandler(noErrorHandler()) > .hystrix() > .to(callWebService) > .onFallback() > .throwException(new RuntimeExce

Camel Hystrix rethrow exception in fallback

2017-07-06 Thread dzielik1
irect:subflow) .errorHandler(noErrorHandler()) .hystrix() .to(callWebService) .onFallback() .throwException(new RuntimeException) How can I resolve this problem? Why exception thrown in onFallback not catched in parent try catch? thanks, for help. Daniel -- View this message in context: http://cam

Re: Camel - Hystrix

2016-11-07 Thread r_karthik1
Thanks...Sure will try it out. -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Hystrix-tp5789751p5789848.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel - Hystrix

2016-11-05 Thread Claus Ibsen
: > http://camel.465427.n5.nabble.com/Camel-Hystrix-tp5789751p5789785.html > Sent from the Camel - Users mailing list archive at Nabble.com. -- Claus Ibsen - http://davsclaus.com @davsclaus Camel in Action 2: https://www.manning.com/ibsen2

Re: Camel - Hystrix

2016-11-05 Thread r_karthik1
Thanks for your quickresponse. >From where I can get 2.18.1 source code to build? its already there in Github? -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Hystrix-tp5789751p5789785.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel - Hystrix

2016-11-04 Thread Claus Ibsen
There was a bug fixed recently in camel-hystrix so you can try 2.18.1 when its released or with the latest source code you can build yourself On Fri, Nov 4, 2016 at 3:20 PM, r_karthik1 wrote: > I am new to Camel and Hystrix, I am trying to imple hystrix in my project. > Before making sure

Camel - Hystrix

2016-11-04 Thread r_karthik1
.log("Client response: ${body}"); } -- View this message in context: http://camel.465427.n5.nabble.com/Camel-Hystrix-tp5789751.html Sent from the Camel - Users mailing list archive at Nabble.com.

Re: Camel Hystrix behaviour when circuit is open

2016-11-01 Thread Claus Ibsen
> I've been experimenting with camel-hystrix and wanted to check what the > expected (or correct) behaviour should be when the Hystrix circuit is open. > > Looking at HystrixProcessorCommand.getFallback(), the fallback command is > only ever run if a prior exception was encountered. Ho

Camel Hystrix behaviour when circuit is open

2016-10-25 Thread James Netherton
Hi all, I've been experimenting with camel-hystrix and wanted to check what the expected (or correct) behaviour should be when the Hystrix circuit is open. Looking at HystrixProcessorCommand.getFallback(), the fallback command is only ever run if a prior exception was encountered. However,

Camel Hystrix behaviour when circuit is open

2016-10-25 Thread jamesnetherton
Hi all, I've been experimenting with camel-hystrix and wanted to check what the expected (or correct) behaviour should be when the Hystrix circuit is open. Looking at HystrixProcessorCommand.getFallback(), the fallback command is only ever run if a prior exception was encountered. However,