定制 love-oss/resiliency 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

love-oss/resiliency

最新稳定版本:2.3

Composer 安装命令:

composer require love-oss/resiliency

包简介

A circuit breaker implementation for PHP 7.4+

README 文档

README

codecov PHPStan Psalm Build Status

Main principles

circuit breaker

This library is compatible with PHP 7.4+.

Installation

composer require love-oss/resiliency

Use

You need to configure a system for the Circuit Breaker:

  • the failures: define how many times we try to access the service;
  • the timeout: define how long we wait (in ms) before consider the service unreachable;
  • the stripped timeout: define how long we wait (in ms) before consider the service unreachable, once we're in half open state;
  • the threshold: define how long we wait (in ms) before trying to access again the service;
  • the (HTTP|HTTPS) client that will be used to reach the services;
  • the fallback callback will be used if the distant service is unreachable when the Circuit Breaker is Open (means "is used").

You'd better return the same type of response expected from your distant call.

use Resiliency\MainCircuitBreaker;
use Resiliency\Systems\MainSystem;
use Resiliency\Storages\SimpleArray;
use Resiliency\Clients\SymfonyClient;
use Symfony\Component\HttpClient\HttpClient;

$client = new SymfonyClient(HttpClient::create());

$mainSystem = MainSystem::createFromArray([
    'failures' => 2,
    'timeout' => 100,
    'stripped_timeout' => 200,
    'threshold' => 10000,
], $client);

$storage = new SimpleArray();

// Any PSR-14 Event Dispatcher implementation.
$dispatcher = new Symfony\Component\EventDispatcher\EventDispatcher;

$circuitBreaker = new MainCircuitBreaker(
    $mainSystem,
    $storage,
    $dispatcher
);

/**
 * @var Service $service
 */
$fallbackResponse = function ($service) {
    return '{}';
};

$circuitBreaker->call(
    'https://api.domain.com',
    $fallbackResponse,
    [
        'query' => [
            '_token' => '123456789',
        ]
    ]
);

Clients

Resiliency library supports both Guzzle (v6 & v7) and HttpClient Component from Symfony (v4 & v5).

Monitoring

This library provides a minimalist system to help you monitor your circuits.

$monitor = new SimpleMonitor();

// Collect information while listening
// to some circuit breaker events...
function listener(Event $event) {
    $monitor->add($event);
};

// Retrieve a complete report for analysis or storage
$report = $monitor->getReport();

Tests

composer test

Code quality

This library has high quality standards:

composer cs-fix && composer phpstan && composer psalm && composer phpqa

We also use PHPQA to check the Code quality during the CI management of the contributions:

composer phpqa

I've heard of the PrestaShop Circuit Breaker: what library should I use ?

Welcome, that's an interesting question !

Above all, I must say that I'm the former author of the PrestaShop Circuit Breaker library and I have decided to fork my own library to be able to improve it without the constraints of the PrestaShop CMS main project.

As of now (June, 2021), these libraries have a lot in common !

They share almost the same API, and the PrestaShop Core Team have created multiple implementations of Circuit Breaker interface and Factory :

  • SimpleCircuitBreaker
  • AdvancedCircuitBreaker
  • PartialCircuitBreaker
  • SymfonyCircuitBreaker
  1. They maintain a version compatible with PHP 7.2+ and Symfony 4 but not (yet ?) with PHP 8 and Symfony 5 ;
  2. They have a dependency on their own package named php-dev-tools ;
  3. They maintain an implementation of Storage using Doctrine Cache library ;
  4. They don't have a Symfony HttpClient implementation ;
  5. For the events, I'm not sure as their implementation make the list difficult to establish ;
  6. They don't provide a mecanism to reset and restore a Circuit Breaker ;
  7. They don't provide a mecanism to monitor the activity of a Circuit Breaker ;
  8. They have removed Psalm from their CI and they don't use PHPQA ;
  9. They have added declare(strict_types=1); on all the files ;
  10. They don't declare a .gitattributes file, this means that all tests are downloaded when we require their library ;

All right ... but this don't tell me what library should I use in my project !

  • If you need PHP 5.6, use Circuit Breaker v3
  • If you need PHP 7.2, use Circuit Breaker v4
  • If you need PHP 7.4+, use Resiliency
  • If you need a library maintained by a team of developers, use PrestaShop
  • If you trust me to maintain this package almost all alone, use Resiliency !

love-oss/resiliency 适用场景与选型建议

love-oss/resiliency 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 19.17k 次下载、GitHub Stars 达 76, 最近一次更新时间为 2019 年 03 月 31 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 love-oss/resiliency 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 love-oss/resiliency 我们能提供哪些服务?
定制开发 / 二次开发

基于 love-oss/resiliency 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 19.17k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 76
  • 点击次数: 11
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 76
  • Watchers: 4
  • Forks: 6
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2019-03-31