Giter VIP home page Giter VIP logo

infuse's Introduction

https://github.com/crazytruth/infuse/raw/master/artworks/infuse200px.png

Infuse

Build Status Documentation Status Codecov

PyPI pyversions PyPI version PyPI license Black

Infuse is a Python implementation of the Circuit Breaker pattern, described in Michael T. Nygard's book Release It!.

In Nygard's words, "circuit breakers exists to allow one subsystem to fail without destroying the entire system. This is done by wrapping dangerous operations (typically integration points) with a component that can circumvent calls when the system is not healthy".

This basically extends pybreaker with support for Insanic. For full documentation refer to pybreaker. What is different from pybreaker is that it is an asynchronous implementation with asynchronous storage options.

We needed a lot more customizations compared to what the pybreaker was providing. Especially with async storage options. The whole CircuitBreaker implementation needed to be fixed for asyncio support.

Whats up with the name?

Some people might ask why infuse? My basic thought process:

  1. Need a name that starts with "in~"
  2. "Circuit Breaker" -> Fuse box
  3. infuse?

Features

  • pybreaker features +
  • aioredis backed storage option

Requirements

  • infuse is only Python 3.4+ (support for asyncio)
    • pybreaker is originally : Python 2.7+ (or Python 3.0+)
  • redis if using async redis (aioredis)

Installation

Run the following command line to download the latest stable version of infuse from PyPI

$ pip install insanic-infuse

Usage

Usage of Infuse is different from pybreaker, where everything is done through the Infuse init_app method.

from insanic import Insanic
from infuse import Infuse

app = Insanic("example", version="0.1.0")
Infuse.init_app(app)

But, before we go on some explanation of what a circuit breaker does:

What Does a Circuit Breaker Do? (from pybreaker)

Let's say you want to use a circuit breaker on a function that updates a row in the customer database table.

def update_customer(cust):
    # Do stuff here...
    pass

# Will trigger the circuit breaker
updated_customer = await db_breaker.call(update_customer, my_customer)

According to the default parameters, the circuit breaker db_breaker will automatically OPEN the circuit after 5 consecutive failures in update_customer.

When the circuit is OPEN, all calls to update_customer will fail immediately (raising a CircuitBreakerError) without any attempt to execute the real operation.

After 60 seconds, the circuit breaker will allow the next call to update_customer pass through. This state is called HALF OPEN . If that call succeeds, the circuit is CLOSED ; if it fails, however, the circuit is OPEN ed again until another timeout elapses.

Excluding Exceptions(from pybreaker)

By default, a failed call is any call that raises an exception. However, it's common to raise exceptions to also indicate business exceptions, and those exceptions should be ignored by the circuit breaker as they don't indicate system errors.

# At creation time...
db_breaker = CircuitBreaker(exclude=[CustomerValidationError])

# ...or later
db_breaker.add_excluded_exception(CustomerValidationError)

In that case, when any function guarded by that circuit breaker raises CustomerValidationError (or any exception derived from CustomerValidationError), that call won't be considered a system failure.

What does Infuse do?

Infuse, when initializing the Insanic application

  1. Sets its own state on the storage as defined in INFUSE_INITIAL_CIRCUIT_STATE.
  2. Patches Insanic's Service object to wrap with circuit breaking.

Other than this, there are some configurations you can tweak. Pretty simple.

For more information, please refer to the Documentation.

Release History

View release history here

Contributing

For guidance on setting up a development environment and how to make a contribution to Infuse, see the CONTRIBUTING.rst guidelines.

Meta

Distributed under the MIT license. See LICENSE for more information.

Thanks to all the people at my prior company that worked with me to make this possible.

Links

infuse's People

Contributors

crazytruth avatar

Watchers

 avatar

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.