utopia-php/balancer
Composer 安装命令:
composer require utopia-php/balancer
包简介
A simple library to balance choices between multiple options.
README 文档
README
Utopia Balancer library is simple and lite library for balancing choices between multiple options. This library is aiming to be as simple and easy to learn and use. This library is maintained by the Appwrite team.
Although this library is part of the Utopia Framework project it is dependency free and can be used as standalone with any other PHP project or framework.
Getting Started
Install using composer:
composer require utopia-php/balancer
Balancer supports multiple algorithms. Each picks option differently, and may have different set of methods available for configuration.
Balancer Algorithms
- Random
Random algorithm pick option randomly. The same option could be picked multiple times in a row. Example:
<?php require_once '../vendor/autoload.php'; use Utopia\Balancer\Algorithm\Random; use Utopia\Balancer\Balancer; use Utopia\Balancer\Option; $balancer = new Balancer(new Random()); $balancer->addFilter(fn (Option $option) => $option->getState('online', false) === true); $balancer ->addOption(new Option([ 'hostname' => 'proxy-1', 'online' => true ])) ->addOption(new Option([ 'hostname' => 'proxy-2', 'online' => false ])) ->addOption(new Option([ 'hostname' => 'proxy-3', 'online' => true ])); var_dump($balancer->run()); var_dump($balancer->run()); var_dump($balancer->run());
- First and Last
First algorithm always picks first option. Similiarly, Last algorithm always picks last option. Example:
<?php require_once '../vendor/autoload.php'; use Utopia\Balancer\Algorithm\First; use Utopia\Balancer\Algorithm\Last; use Utopia\Balancer\Balancer; use Utopia\Balancer\Option; $balancer = new Balancer(new First()); $balancer ->addOption(new Option([ 'runtime' => 'PHP' ])) ->addOption(new Option([ 'runtime' => 'JavaScript' ])) ->addOption(new Option([ 'runtime' => 'Java' ])); var_dump($balancer->run()); $balancer = new Balancer(new Last()); $balancer ->addOption(new Option([ 'runtime' => 'PHP' ])) ->addOption(new Option([ 'runtime' => 'JavaScript' ])) ->addOption(new Option([ 'runtime' => 'Java' ])); var_dump($balancer->run());
- Round Robin
RoundRobin algorithm cycles over all options starting first. Once algorithm cycles over all options, it resets back to the beginning. Example:
<?php require_once '../vendor/autoload.php'; use Utopia\Balancer\Algorithm\RoundRobin; use Utopia\Balancer\Balancer; use Utopia\Balancer\Option; $balancer = new Balancer(new RoundRobin(-1)); $balancer->addFilter(fn (Option $option) => $option->getState('online', false) === true); $balancer ->addOption(new Option([ 'dataCenter' => 'fra-1' ])) ->addOption(new Option([ 'dataCenter' => 'fra-2' ])) ->addOption(new Option([ 'dataCenter' => 'lon-1' ])); var_dump($balancer->run()); // fra-1 var_dump($balancer->run()); // fra-2 var_dump($balancer->run()); // lon-1 var_dump($balancer->run()); // fra-1 var_dump($balancer->run()); // fra-2
When using RoundRobin in concurrency model, make sure to store index in atomic way. Example:
<?php require_once '../vendor/autoload.php'; use Utopia\Balancer\Algorithm\RoundRobin; use Utopia\Balancer\Balancer; use Utopia\Balancer\Option; $atomic = new Atomic(-1); // Some atomic implementation, for example: https://openswoole.com/docs/modules/swoole-atomic function onRequest() { $lastIndex = $atomic->get(); $algo = new RoundRobin($lastIndex); $balancer = new Balancer(); $balancer->addFilter(fn (Option $option) => $option->getState('online', false) === true); $balancer ->addOption(new Option([ 'dataCenter' => 'fra-1' ])) ->addOption(new Option([ 'dataCenter' => 'fra-2' ])) ->addOption(new Option([ 'dataCenter' => 'lon-1' ])); var_dump($balancer->run()); $atomic->cmpset($lastIndex, $algo->getIndex()); }
Balancer Group
If balancer filters cause balancer to have no options to pick from, null will be returned. More often then not, you will need a backup logic for this scenario. You can use Group to create a group of multiple balancers and if one fails, next can be used as fallback. Notice Group tries balances in order you added them.
<?php require_once '../vendor/autoload.php'; use Utopia\Balancer\Algorithm\First; use Utopia\Balancer\Balancer; use Utopia\Balancer\Group; use Utopia\Balancer\Option; // Prepare options where each has high CPU load $options = [ new Option([ 'dataCenter' => 'fra-1', 'cpu' => 91 ]), new Option([ 'dataCenter' => 'fra-2', 'cpu' => 95 ]), new Option([ 'dataCenter' => 'lon-1', 'cpu' => 87 ]), ]; // Prepare balancer that allows only low CPU load options $balancer1 = new Balancer(new First()); $balancer1->addFilter(fn ($option) => $option->getState('cpu') < 80); // Prepare balancer that allows all options $balancer2 = new Balancer(new First()); // Add options to both balancers foreach ($options as $option) { $balancer1->addOption($option); $balancer2->addOption($option); } // Prepare group with both balancers $group = new Group(); $group ->add($balancer1) ->add($balancer2); // Run group to get option $option = $group->run() ?? new Option([]); \var_dump($option); // We got fra-1 option. First balancer filtered out all options, but second balancer allowed any, and First algorithm picked first option
System Requirements
Utopia Framework requires PHP 8.0 or later. We recommend using the latest PHP version whenever possible.
Copyright and license
The MIT License (MIT) http://www.opensource.org/licenses/mit-license.php
utopia-php/balancer 适用场景与选型建议
utopia-php/balancer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 905 次下载、GitHub Stars 达 6, 最近一次更新时间为 2022 年 11 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「framework」 「php」 「upf」 「balancing」 「balancer」 「utopia」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 utopia-php/balancer 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 utopia-php/balancer 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 utopia-php/balancer 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Framework HLEB2 is the foundation of the web application. Provides ease of development and application performance.
Lite & fast micro PHP test framework that is **easy to use**.
A simple, light and advanced PHP HTTP framework
A simple library providing a query abstraction for filtering, ordering, and pagination
Light & simple Circuit Breaker for PHP to prevent cascading failures in distributed systems.
A simple AB Test library to manage server side AB testing
统计信息
- 总下载量: 905
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 21
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-11-07