Skip to main content

A Python library implementing a circuit breaker pattern

Project description

CirBreak

This Python library provides a circuit_breaker decorator for implementing the circuit breaker pattern in your applications.

The circuit breaker pattern is a resiliency mechanism that helps protect external dependencies from cascading failures. It works by monitoring the success and failure rates of calls to a function and taking preventive measures to avoid overloading the dependency.

How it Works

The circuit_breaker decorator takes several optional arguments:

  • failure_threshold: The number of consecutive failures allowed before the circuit opens (defaults to 3).
  • recovery_timeout: The time window in seconds after which the circuit attempts recovery (defaults to 10).
  • replace_function: A function to execute during the circuit open state. This function should accept the same arguments as the decorated function (optional).
  • consecutive: A flag indicating whether consecutive failures trigger opening (defaults to False).

Here's a basic example of using the decorator:

import time
from cirbreak import circuit_breaker

def replace(number):
    print("Another function", number)

@circuit_breaker(
    failure_threshold=5, recovery_timeout=10, replace_function=replace, consecutive=False
)
def test_circuit_breaker(number):
    if number % 3 == 0:
        raise Exception("Number is divisible by 3")
    else:
        print(number)

for i in range(1, 30):
    try:
        test_circuit_breaker(i)
    except Exception as e:
        print(e)
    time.sleep(1)

In this example, the replace function is provided as the replace_function argument to the circuit_breaker decorator. The replacement function should receive the same arguments as the decorated function. This setup allows for custom handling during the circuit open state, such as logging or alternative processing.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cirbreak-0.1.3.tar.gz (4.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page