Git Product home page Git Product logo

sse-breaker's People

Contributors

sptz45 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar

Forkers

mskim75

sse-breaker's Issues

The circuit is not tripping to open state

I am trying to integrate your library into my project and it seems like the circuit is not tripping to open state properly.

My application is making requests every 4 seconds to a MongoDB database and I am shutting down the DB while the application is running. If a start the application when the DB is down the breaker is tripped into Open state when the failure counter reaches the maxFailures count, then I start up the DB again and the breaker is tripped into the Close state properly but if I shutdown the DB one more time the breaker is not tripping to the Open state anymore.

See below my code:

circuitBreaker match {
      case Some(breaker) => {
        breaker.failFast (fetchData(theQuery, filters, fetchMetaData))
          .recover { case _: OpenCircuitException => {
              Logger.error(Messages("circuitbreaker.open.circuit.error", dataProviderProperties.prettyPrint()))
              Left(FailResult(Messages("circuitbreaker.open.circuit.error", dataProviderProperties.prettyPrint())))

          }}
      }
      case _ => {
        fetchData(theQuery, filters, fetchMetaData)
      }
    }

Bug in documentation

val failFast = new CircuitExecutor(
name="tweets-breaker",
CircuitConfiguration(
maxFailures = 5,
openCircuitTimeout = 30.seconds,
failureCountTimeout = 1.minute,
maxMethodDuration = 10.seconds)
)
Compile Error :

not enough arguments for constructor CircuitExecutor: (circuitName: String, circuitConfig: com.tzavellas.sse.breaker.CircuitConfiguration, circuitListener: com.tzavellas.sse.breaker.CircuitStateListener)com.tzavellas.sse.breaker.CircuitExecutor

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.