2021-07-16 18:59:18 +08:00
|
|
|
# 基於多路複用的 RPC 組件
|
|
|
|
|
|
|
|
本組件基於 `TCP` 協議,多路複用的設計借鑑於 `AMQP` 組件。
|
|
|
|
|
|
|
|
## 安裝
|
|
|
|
|
|
|
|
```
|
|
|
|
composer require hyperf/rpc-multiplex
|
|
|
|
```
|
|
|
|
|
|
|
|
## Server 配置
|
|
|
|
|
|
|
|
修改 `config/autoload/server.php` 配置文件,以下配置刪除了不相干的配置。
|
|
|
|
|
|
|
|
`settings` 設置中,分包規則不允許修改,只可以修改 `package_max_length`,此配置需要 `Server` 和 `Client` 保持一致。
|
|
|
|
|
|
|
|
```php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
use Hyperf\Server\Event;
|
|
|
|
use Hyperf\Server\Server;
|
|
|
|
|
|
|
|
return [
|
|
|
|
'servers' => [
|
|
|
|
[
|
|
|
|
'name' => 'rpc',
|
|
|
|
'type' => Server::SERVER_BASE,
|
|
|
|
'host' => '0.0.0.0',
|
|
|
|
'port' => 9502,
|
|
|
|
'sock_type' => SWOOLE_SOCK_TCP,
|
|
|
|
'callbacks' => [
|
|
|
|
Event::ON_RECEIVE => [Hyperf\RpcMultiplex\TcpServer::class, 'onReceive'],
|
|
|
|
],
|
|
|
|
'settings' => [
|
|
|
|
'open_length_check' => true,
|
|
|
|
'package_length_type' => 'N',
|
|
|
|
'package_length_offset' => 0,
|
|
|
|
'package_body_offset' => 4,
|
|
|
|
'package_max_length' => 1024 * 1024 * 2,
|
|
|
|
],
|
2023-04-07 16:46:41 +08:00
|
|
|
'options' => [
|
|
|
|
// 多路複用下,避免跨協程 Socket 跨協程多寫報錯
|
|
|
|
'send_channel_capacity' => 65535,
|
|
|
|
],
|
2021-07-16 18:59:18 +08:00
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
創建 `RpcService`
|
|
|
|
|
|
|
|
```php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\RPC;
|
|
|
|
|
|
|
|
use App\JsonRpc\CalculatorServiceInterface;
|
|
|
|
use Hyperf\RpcMultiplex\Constant;
|
|
|
|
use Hyperf\RpcServer\Annotation\RpcService;
|
|
|
|
|
2021-12-01 16:19:47 +08:00
|
|
|
#[RpcService(name: "CalculatorService", server: "rpc", protocol: Constant::PROTOCOL_DEFAULT)]
|
2021-07-16 18:59:18 +08:00
|
|
|
class CalculatorService implements CalculatorServiceInterface
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
## 客户端配置
|
|
|
|
|
|
|
|
修改 `config/autoload/services.php` 配置文件
|
|
|
|
|
|
|
|
```php
|
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
return [
|
|
|
|
'consumers' => [
|
|
|
|
[
|
|
|
|
'name' => 'CalculatorService',
|
|
|
|
'service' => App\JsonRpc\CalculatorServiceInterface::class,
|
|
|
|
'id' => App\JsonRpc\CalculatorServiceInterface::class,
|
|
|
|
'protocol' => Hyperf\RpcMultiplex\Constant::PROTOCOL_DEFAULT,
|
|
|
|
'load_balancer' => 'random',
|
2021-08-13 18:07:28 +08:00
|
|
|
// 這個消費者要從哪個服務中心獲取節點信息,如不配置則不會從服務中心獲取節點信息
|
|
|
|
'registry' => [
|
|
|
|
'protocol' => 'consul',
|
|
|
|
'address' => 'http://127.0.0.1:8500',
|
|
|
|
],
|
2021-07-16 18:59:18 +08:00
|
|
|
'nodes' => [
|
|
|
|
['host' => '127.0.0.1', 'port' => 9502],
|
|
|
|
],
|
|
|
|
'options' => [
|
|
|
|
'connect_timeout' => 5.0,
|
|
|
|
'recv_timeout' => 5.0,
|
|
|
|
'settings' => [
|
|
|
|
// 包體最大值,若小於 Server 返回的數據大小,則會拋出異常,故儘量控制包體大小
|
|
|
|
'package_max_length' => 1024 * 1024 * 2,
|
|
|
|
],
|
|
|
|
// 重試次數,默認值為 2
|
|
|
|
'retry_count' => 2,
|
|
|
|
// 重試間隔,毫秒
|
|
|
|
'retry_interval' => 100,
|
|
|
|
// 多路複用客户端數量
|
|
|
|
'client_count' => 4,
|
2022-12-27 13:37:04 +08:00
|
|
|
// 心跳間隔 非 numeric 表示不開啓心跳
|
2021-07-16 18:59:18 +08:00
|
|
|
'heartbeat' => 30,
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2021-08-15 09:55:23 +08:00
|
|
|
### 註冊中心
|
|
|
|
|
|
|
|
如果需要使用註冊中心,則需要手動添加以下監聽器
|
|
|
|
|
|
|
|
```php
|
|
|
|
<?php
|
|
|
|
return [
|
|
|
|
Hyperf\RpcMultiplex\Listener\RegisterServiceListener::class,
|
|
|
|
];
|
|
|
|
```
|
2021-07-16 18:59:18 +08:00
|
|
|
|
|
|
|
|