flavioheleno/interrupt
Composer 安装命令:
composer require flavioheleno/interrupt
包简介
PSR-18 compliant Circuit Breaker wrapper
README 文档
README
This library implements a PSR-18 compliant Circuit Breaker wrapper that can be used to ensure service stability and prevent overload or degradation in remote service calls.
Acknowledgement
This library is heavily inspired by:
Installation
To use Interim, install it using composer:
composer require flavioheleno/interrupt
Usage
As a PSR-18 HTTP Client Wrapper
// any PSR-18 compliant HTTP Client implementation // $httpClient = new ... // resolves the service name to its scheme + host + port // eg. https://api.example.org/v1 -> https://api.example.org // eg. https://api.example.org:5000/v1 -> https://api.example.org:5000 // can be replaced by StaticNameResolver $serviceNameResolver = Interrupt\ServiceNameResolvers\UriBasedResolver(); // any PSR-6 compliant Cache Item Pool implementation // $cacheItemPool = new ... // any PSR-20 compliant Clock implementation // $clock = new ... // can be replaced by FixedTimeWindowBasedRecordStrategy $recordStrategy = new Interrupt\RecordStrategies\SlidingTimeWindowBasedRecordStrategy( $clock ); // can be replaced by CountBasedCircuitBreaker $circuitBreaker = new Interrupt\CircuitBreakers\RateBasedCircuitBreaker( $clock, $cacheItemPool, $recordStrategy ); $failureDetector = new Interrupt\FailureDetectors\HttpStatusBasedFailureDetector(); $client = new Psr18Wrapper( $httpClient, $serviceNameResolver, $circuitBreaker, $failureDetector ); // when the called service is unavailable, $client will throw an // Interrupt\Exceptions\ServiceUnavailableException exception.
As a Guzzle Middleware
$middleware = new GuzzleMiddleware( $serviceNameResolver, $circuitBreaker, $failureDetector ); $handlerStack = \GuzzleHttp\HandlerStack::create(); $handlerStack->push($middleware); $client = new GuzzleHttp\Client(['handler' => $handlerStack]); // when the called service is unavailable, $client will throw an // Interrupt\Exceptions\ServiceUnavailableException exception.
Components
Interrupt is built around the concept of components to allow easy integration with different environments or frameworks, making it a flexible and customizable library.
Service Name Resolver
To keep track of services accessed by the wrapped client, Interrupt uses the concept of Service Name Resolvers, that generates consistent service names based on request attributes.
Interrupt is distributed with:
- UriBasedResolver, a resolver implementation that generates service names from the request URI components
- StaticNameResolver, a resolver implementation that always return a constant service name
Record Strategy
The Record Strategy determines how Interrupt keeps track of failure events during a period of time.
A FixedTimeWindowBasedRecordStrategy that uses a predefined time interval to register failure records within its duration. Once the interval is over, the recorded failures are cleaned up and a new fixed interval starts.
A SlidingTimeWindowBasedRecordStrategy that uses a moving or shifting time interval to register failure records. Instead of fixed intervals, the time window slides (or moves along) with the failure stream.
The Sliding Time Window approach allows for continuous analysis of the most recent data while still considering a specific timeframe.
Note
Both strategies require a PSR-20 compatible Clock implementation.
Failure Detector
Failure can be subjective to context so Interrupt relies on Failure Detector to detect context-dependant failures.
Embedded in Psr18Wrapper is the failure detection for network issues, timeouts and any other
thrown exception that extends Psr\Http\Client\ClientExceptionInterface.
In addition to that, the HttpStatusBasedFailureDetector interprets the HTTP Status Code as signal of failure.
Circuit Breakers
Interrupt comes with two Circuit Breakers implementations:
A CountBasedCircuitBreaker that monitors the number of failures recorded and automatically interrupts the flow of requests if the threshold is exceeded.
A RateBasedCircuitBreaker that monitors the rate or frequency of failures recorded and automatically interrupts the flow of requests if the error rate surpasses a predefined threshold.
Note
Both circuit breakers require a PSR-6 compatible Cache implementation.
License
This library is licensed under the MIT License.
flavioheleno/interrupt 适用场景与选型建议
flavioheleno/interrupt 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 47 次下载、GitHub Stars 达 11, 最近一次更新时间为 2023 年 06 月 12 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「error handling」 「circuit breaker」 「microservices」 「fault tolerance」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 flavioheleno/interrupt 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 flavioheleno/interrupt 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 flavioheleno/interrupt 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A circuit breaker pattern implementation for the Laravel framework
Circuit Breaker pattern implementation in PHP
Provides form handler for Symfony form types
PHP Error Handler module that captures and displays all throwable errors in a given format, making debugging easier and more efficient
Circuit Breaker pattern implementation in Laravel 5.
The Laravel implementation for The Circuit breaker pattern
统计信息
- 总下载量: 47
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 11
- 点击次数: 16
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-12