lucas-simoes/eureka-client-php
Composer 安装命令:
composer require lucas-simoes/eureka-client-php
包简介
A PHP client for Spring Cloud Eureka discovery server.
README 文档
README
A PHP client for (Spring Cloud) Netflix Eureka service registration and discovery.
Installation
You can install this package easily using Composer:
composer require "piwvh/php-eureka"
Documentation
Create Eureka Client
The very first thing you need to do is to create an instance of EurekaClient using your configuration:
$client = new EurekaClient([ 'eurekaDefaultUrl' => 'http://localhost:8761/eureka', 'hostName' => 'service.hamid.work', 'appName' => 'service', 'ip' => '127.0.0.1', 'port' => ['8080', true], 'homePageUrl' => 'http://localhost:8080', 'statusPageUrl' => 'http://localhost:8080/info', 'healthCheckUrl' => 'http://localhost:8080/health' ]);
List of all available configuration includes:
eurekaDefaultUrl(default:http://localhost:8761);hostNameappNameipstatus(default:UP)overriddenStatus(default:UNKNOWN)portsecurePort(default:['443', false])countryId(default:1)dataCenterInfo(default:['com.netflix.appinfo.InstanceInfo$DefaultDataCenterInfo', 'MyOwn'])homePageUrlstatusPageUrlhealthCheckUrlvipAddresssecureVipAddressheartbeatInterval(default:30)discoveryStrategy(default:RandomStrategy)instanceProvider
You can also change configuration after creating EurekaClient instance, using setter methods:
$client->getConfig()->setAppName("my-service");
Operations
After creating EurekaClient instance, there will be multiple operations you can do:
- Registration: register your service instance with Eureka
$client->register();
- De-registration: de-register your service instance from Eureka
$client->deRegister();
- Heartbeat: send heartbeat to Eureka, to determine the client is up (one-time heartbeat)
$client->heartbeat();
You can register your instance and send periodic heartbeat using start() method:
$client->start();
With this method, first your service gets registered with Eureka using the
configuration you have provided. After that, a heartbeat will be sent to the Eureka periodically based
on heartbeatInterval configuration value. This interval time can be changed just like any other
configuration item:
$client->getConfig()->setHeartbeatInterval(60); // 60 seconds
It's obvious that this method should be used in CLI.
- Service Discovery: fetch an instance of a service from Eureka:
$instance = $client->fetchInstance("the-service"); $homePageUrl = $instance->homePageUrl;
Discovery Strategy
When fetching instances of a service from Eureka, you probably get a list of available instances. You can choose one of them based on your desired strategy of load balancing. For example, a Round-robin or a Random strategy might be your choice.
Currently this library only supports RandomStrategy, but you can create your custom
strategy by implementing getInstance() method of DiscoveryStrategy interface:
class RoundRobinStrategy implements DiscoveryStrategy { public function getInstance($instances) { // return an instance } }
Then all you have to do, is to introduce your custom strategy to EurekaClient instance:
$client->getConfig()->setDiscoveryStrategy(new RoundRobinStrategy());
Local Registry and Caching
Failure is inevitable, specially in cloud-native or distributed applications. So, sometimes Eureka may not be available because of failure. In this cases, we should have a local registry of services to avoid cascading failures.
By default, if Eureka is down, the fetchInstance() method fails, so
the application throws an exception and can not continue to work. To solve this
problem, you should create a local registry in your application.
There is an interface called InstanceProvider which you can make use of.
You should implement getInstances() method of this interface and return instances
of a service based on your ideal logic.
class MyProvider implements InstanceProvider { public function getInstances($appName) { // return cached instances of the service from the database } }
In this example, we have cached the instances of the service in the database and are loading them when Eureka is down.
After creating your custom provider, just make it work by adding it to the configuration:
$client->getConfig()->setInstanceProvider(new MyProvider());
Your custom provider only gets called when Eureka is down or is not answering properly.
That's it. By adding this functionality, your application keeps working even when Eureka is down.
For caching all available instances of a specific service, you can call fetchInstances() method
which fetches all of the instances of the service from Eureka:
$instances = $client->fetchInstances("the-service");
lucas-simoes/eureka-client-php 适用场景与选型建议
lucas-simoes/eureka-client-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.16k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 03 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「eureka」 「spring cloud」 「discovery server」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 lucas-simoes/eureka-client-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 lucas-simoes/eureka-client-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 lucas-simoes/eureka-client-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP client for the Netflix Eureka server.
Xibo Message Relay
PHP client for the Netflix Eureka server.
PHP Dependency Injection based on Spring(tm), with Aspect Oriented Programming, MVC
php IOC&AOP framework
A PHP client for Spring Cloud Eureka discovery server.
统计信息
- 总下载量: 2.16k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 15
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-03-03