leyton/laravel-circuit-breaker
Composer 安装命令:
composer require leyton/laravel-circuit-breaker
包简介
The Laravel implementation for The Circuit breaker pattern
关键字:
README 文档
README
A Laravel implementation of the Circuit Breaker pattern to prevent cascading failures in distributed systems.
Table of Contents
Motivation
The Circuit Breaker Pattern is essential for ensuring your software's resilience. It prevents failures from spreading, maintaining operational stability even when services encounter issues. By providing visual feedback and improving user experience, it keeps your application running smoothly. Additionally, it simplifies maintenance and troubleshooting, enabling quicker problem resolution. Overall, integrating the Circuit Breaker Pattern is crucial for enhancing reliability and user satisfaction.
You can find more detailes about this pattern here Circuit Breaker Pattern
Installation
composer require leyton/laravel-circuit-breaker
After the installation make sure to publish the assets
php artisan vendor:publish --provider="Leyton\LaravelCircuitBreaker\LaravelCircuitBreakerServiceProvider"
You will find the config/circuit-breaker.php file containing all the configurations needed.
<?php return [ 'threshold' => 10, // number of trials to pass from half-open to closed/open and from closed to half-open 'available_after_seconds' => 10, // the seconds it takes while in the open status 'driver' => 'redis', // the cache store driver ];
Usage
The package provides you with a straightforward API to use.
<?php use Leyton\LaravelCircuitBreaker\Circuit; use Leyton\LaravelCircuitBreaker\Exceptions\RequestFailedException; function goToGoogle(){ try{ $response = Http::get("https://gooogle.com"); if($response->status() === 500){ throw new RequestFailedException(); } return "all is good"; }catch(\Exception $exception){ throw new RequestFailedException(); } } // The Circuit is resolved out of the service container $circuit = app()->make(Circuit::class); //The run method expects the service name and the function that wraps the service //It should throw the RequestFailedException when the service is not responding as expected $packet = $circuit->run("go-to-google", fn() => goToGoogle());
The packet object holds the result of the callback and the status of the service
Leyton\LaravelCircuitBreaker\Transporters\Packet {#2939 +result: "all is good", +status: Leyton\LaravelCircuitBreaker\CircuitStatus {#2943 +name: "CLOSED", +value: "closed", }, +success: true, }
One of the benefits of this pattern is to prevent the system from performing unnecessary actions when there are multiple transactions. This is an example of the usage
<?php namespace App\Http\Controllers; use Leyton\LaravelCircuitBreaker\Circuit; use App\Services\LocationServiceClient; use App\Services\PaymentGatewayClient; use Illuminate\Http\Request; use Exception; class MakeOrderController extends Controller { public function __construct( protected LocationServiceClient $locationServiceClient, protected PaymentGatewayClient $paymentGatewayClient, protected Circuit $Circuit, ) { } public function __invoke(Request $request) { $location = $request->get('location'); $paymentDetails = $request->get('payment_details'); $client = $request->get('client'); if(!$this->circuit->available(['location-service', 'payment-service'])){ return response()->json([ 'message' => 'Services are un-available, please retry later' ]); } $withdrawalPoint = $this->circuit->run("location-service", fn() => $this->locationServiceClient->getNearWithdrawalPoint($location)); $payment = $this->circuit->run( "payment-service", fn() => $this->paymentGatewayClient->processPayment($client, $order, $withdrawalPoint->result) ); // ... return response()->json($data); } }
Built with care by Leyton CognitX
leyton/laravel-circuit-breaker 适用场景与选型建议
leyton/laravel-circuit-breaker 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.09k 次下载、GitHub Stars 达 3, 最近一次更新时间为 2024 年 05 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「api」 「laravel」 「circuit breaker」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 leyton/laravel-circuit-breaker 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 leyton/laravel-circuit-breaker 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 leyton/laravel-circuit-breaker 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Alfabank REST API integration
Zero-dependency raw PHP DNS resolver, domain-ownership verification, and intoDNS/MxToolbox-style diagnostics. Queries authoritative nameservers directly over sockets — never trusts the recursive cache for ownership checks.
Laravel package for Accurate Online API integration.
A lightweight plain-PHP framework for database-backed CRUD APIs.
bughq error tracking - PHP SDK
统计信息
- 总下载量: 1.09k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 4
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-07