netflix hystrix and spring integration -
i have spring integration project sends data various sources via gateway , fetching data databases , updating tables.
it working fine there many points of failure , wish wrap calls these gateways netflix's hystrix framework , have displayed hystrix dashboard.
all ideas , suggestions welcomed.
thanks
you can find info need in hystrix github repo page here. documentation regarding dashboard found in same place, in master branch here
there several ways use framework, commonly, wrap service/call inside hystrixcommand
object, , fill run()
, fallback()
methods. can find example here
regarding dashboard, need build project , can use "out of box"; if don't want go deep configuration. able access through web explorer, , trace calls service(s) wrapped hystrix, entering url in dashboard homepage.
can find additional documentation dashboard in hystrix wiki.
Comments
Post a Comment