hyperf/docs/zh-hk/async-queue.md

508 lines
14 KiB
Markdown
Raw Normal View History

2019-12-12 16:24:04 +08:00
# 異步隊列
2019-03-30 15:00:10 +08:00
2021-03-15 09:48:32 +08:00
異步隊列區別於 `RabbitMQ` `Kafka` 等消息隊列,它只提供一種 `異步處理``異步延時處理` 的能力,並 **不能** 嚴格地保證消息的持久化和 **不支持** 完備的 ACK 應答機制。
2019-03-30 15:00:10 +08:00
2019-12-12 16:24:04 +08:00
## 安裝
2019-03-30 22:53:32 +08:00
```bash
2019-04-10 14:28:15 +08:00
composer require hyperf/async-queue
2019-03-30 22:53:32 +08:00
```
2019-03-30 15:00:10 +08:00
## 配置
2019-12-12 16:24:04 +08:00
配置文件位於 `config/autoload/async_queue.php`,如文件不存在可自行創建。
2019-07-04 20:10:57 +08:00
2019-12-12 16:24:04 +08:00
> 暫時只支持 `Redis Driver` 驅動。
2019-03-30 15:00:10 +08:00
2019-12-12 16:24:04 +08:00
| 配置 | 類型 | 默認值 | 備註 |
2019-10-08 14:37:27 +08:00
|:----------------:|:---------:|:-------------------------------------------:|:---------------------------------------:|
2019-12-12 16:24:04 +08:00
| driver | string | Hyperf\AsyncQueue\Driver\RedisDriver::class | 無 |
| channel | string | queue | 隊列前綴 |
2020-05-19 11:26:54 +08:00
| redis.pool | string | default | redis 連接池 |
2020-02-29 13:23:57 +08:00
| timeout | int | 2 | pop 消息的超時時間 |
2019-12-12 16:24:04 +08:00
| retry_seconds | int,array | 5 | 失敗後重新嘗試間隔 |
| handle_timeout | int | 10 | 消息處理超時時間 |
| processes | int | 1 | 消費進程數 |
| concurrent.limit | int | 1 | 同時處理消息數 |
| max_messages | int | 0 | 進程重啟所需最大處理的消息數 默認不重啟 |
2019-03-30 15:00:10 +08:00
```php
<?php
return [
'default' => [
2019-04-10 14:28:15 +08:00
'driver' => Hyperf\AsyncQueue\Driver\RedisDriver::class,
'redis' => [
'pool' => 'default'
],
2019-03-30 15:00:10 +08:00
'channel' => 'queue',
2019-10-08 14:37:27 +08:00
'timeout' => 2,
2019-03-30 15:00:10 +08:00
'retry_seconds' => 5,
2019-10-08 14:37:27 +08:00
'handle_timeout' => 10,
2019-03-30 15:00:10 +08:00
'processes' => 1,
2019-10-08 14:37:27 +08:00
'concurrent' => [
'limit' => 5,
],
2019-03-30 15:00:10 +08:00
],
];
```
2019-12-12 16:24:04 +08:00
`retry_seconds` 也可以傳入數組,根據重試次數相應修改重試時間,例如
2019-09-20 17:32:53 +08:00
```php
<?php
return [
'default' => [
'driver' => Hyperf\AsyncQueue\Driver\RedisDriver::class,
'channel' => 'queue',
'retry_seconds' => [1, 5, 10, 20],
'processes' => 1,
],
];
```
## 工作原理
`ConsumerProcess` 是異步消費進程,會根據用户創建的 `Job` 或者使用 `@AsyncQueueMessage` 的代碼塊,執行消費邏輯。
`Job``@AsyncQueueMessage` 都是需要投遞和執行的任務,即數據、消費邏輯都會在任務中定義。
- `Job` 類中成員變量即為待消費的數據,`handle()` 方法則為消費邏輯。
- `@AsyncQueueMessage` 註解的方法,構造函數傳入的數據即為待消費的數據,方法體則為消費邏輯。
```mermaid
graph LR;
A[服務啟動]-->B[異步消費進程啟動]
B-->C[監聽隊列]
D[投遞任務]-->C
C-->F[消費任務]
```
2019-03-30 15:00:10 +08:00
## 使用
### 配置異步消費進程
2019-03-30 15:00:10 +08:00
組件已經提供了默認 `異步消費進程`,只需要將它配置到 `config/autoload/processes.php` 中即可。
2019-03-30 15:00:10 +08:00
```php
<?php
return [
2019-04-10 14:28:15 +08:00
Hyperf\AsyncQueue\Process\ConsumerProcess::class,
2019-03-30 15:00:10 +08:00
];
```
2019-12-12 16:24:04 +08:00
當然,您也可以將以下 `Process` 添加到自己的項目中。
2019-07-25 10:05:33 +08:00
> 配置方式和註解方式,二選一即可。
2019-07-25 10:05:33 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Process;
use Hyperf\AsyncQueue\Process\ConsumerProcess;
use Hyperf\Process\Annotation\Process;
#[Process(name: "async-queue")]
2019-07-25 10:05:33 +08:00
class AsyncQueueConsumer extends ConsumerProcess
{
}
```
2019-12-12 16:24:04 +08:00
### 生產消息
2019-03-30 15:00:10 +08:00
2019-12-12 16:24:04 +08:00
#### 傳統方式
2019-10-16 13:56:16 +08:00
2020-01-16 14:33:32 +08:00
這種模式會把對象直接序列化然後存到 `Redis` 等隊列中,所以為了保證序列化後的體積,儘量不要將 `Container``Config` 等設置為成員變量。
比如以下 `Job` 的定義,是 **不可取** 的,同理 `@Inject` 也是如此。
> 因為 Job 會被序列化,所以成員變量不要包含 匿名函數 等 無法被序列化 的內容,如果不清楚哪些內容無法被序列化,儘量使用註解方式。
2020-01-16 14:33:32 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Job;
use Hyperf\AsyncQueue\Job;
use Psr\Container\ContainerInterface;
class ExampleJob extends Job
{
public $container;
public $params;
public function __construct(ContainerInterface $container, $params)
{
$this->container = $container;
$this->params = $params;
}
public function handle()
{
// 根據參數處理具體邏輯
var_dump($this->params);
}
}
$job = make(ExampleJob::class);
```
正確的 `Job` 應該是隻有需要處理的數據,其他相關數據,可以在 `handle` 方法中重新獲取,如下。
2019-03-30 15:00:10 +08:00
```php
<?php
declare(strict_types=1);
2019-07-25 10:05:33 +08:00
namespace App\Job;
2019-03-30 15:00:10 +08:00
2019-04-10 14:28:15 +08:00
use Hyperf\AsyncQueue\Job;
2019-03-30 15:00:10 +08:00
class ExampleJob extends Job
{
2019-07-25 10:05:33 +08:00
public $params;
/**
* 任務執行失敗後的重試次數,即最大執行次數為 $maxAttempts+1 次
*/
protected int $maxAttempts = 2;
2019-07-25 10:05:33 +08:00
public function __construct($params)
{
2019-12-12 16:24:04 +08:00
// 這裏最好是普通數據,不要使用攜帶 IO 的對象,比如 PDO 對象
2019-07-25 10:05:33 +08:00
$this->params = $params;
}
2019-07-25 10:05:33 +08:00
2019-03-30 15:00:10 +08:00
public function handle()
{
2019-12-12 16:24:04 +08:00
// 根據參數處理具體邏輯
2020-01-16 14:33:32 +08:00
// 通過具體參數獲取模型等
// 這裏的邏輯會在 ConsumerProcess 進程中執行
var_dump($this->params);
2019-03-30 15:00:10 +08:00
}
}
```
2020-01-16 14:33:32 +08:00
正確定義完 `Job` 後,我們需要寫一個專門投遞消息的 `Service`,代碼如下。
2019-03-30 15:00:10 +08:00
```php
<?php
declare(strict_types=1);
2019-07-25 10:05:33 +08:00
namespace App\Service;
use App\Job\ExampleJob;
2019-04-10 14:28:15 +08:00
use Hyperf\AsyncQueue\Driver\DriverFactory;
2019-07-04 17:41:44 +08:00
use Hyperf\AsyncQueue\Driver\DriverInterface;
2019-03-30 15:00:10 +08:00
2019-07-25 10:05:33 +08:00
class QueueService
2019-03-30 15:00:10 +08:00
{
protected DriverInterface $driver;
2019-03-30 15:00:10 +08:00
2019-05-13 02:25:03 +08:00
public function __construct(DriverFactory $driverFactory)
2019-03-30 15:00:10 +08:00
{
2019-05-13 02:25:03 +08:00
$this->driver = $driverFactory->get('default');
2019-03-30 15:00:10 +08:00
}
2019-07-25 10:05:33 +08:00
/**
2019-12-12 16:24:04 +08:00
* 生產消息.
* @param $params 數據
* @param int $delay 延時時間 單位秒
2019-07-25 10:05:33 +08:00
*/
2019-07-29 00:19:34 +08:00
public function push($params, int $delay = 0): bool
2019-07-04 17:41:44 +08:00
{
2019-12-12 16:24:04 +08:00
// 這裏的 `ExampleJob` 會被序列化存到 Redis 中,所以內部變量最好只傳入普通數據
// 同理,如果內部使用了註解 @Value 會把對應對象一起序列化,導致消息體變大。
// 所以這裏也不推薦使用 `make` 方法來創建 `Job` 對象。
2019-07-25 10:05:33 +08:00
return $this->driver->push(new ExampleJob($params), $delay);
}
}
```
2020-01-16 14:33:32 +08:00
投遞消息
接下來,調用我們的 `QueueService` 投遞消息即可。
```php
<?php
declare(strict_types=1);
namespace App\Controller;
use App\Service\QueueService;
use Hyperf\Di\Annotation\Inject;
use Hyperf\HttpServer\Annotation\AutoController;
#[AutoController]
class QueueController extends AbstractController
2020-01-16 14:33:32 +08:00
{
#[Inject]
protected QueueService $service;
2020-01-16 14:33:32 +08:00
/**
* 傳統模式投遞消息
*/
public function index()
{
$this->service->push([
'group@hyperf.io',
'https://doc.hyperf.io',
'https://www.hyperf.io',
]);
return 'success';
}
}
```
2019-12-12 16:24:04 +08:00
#### 註解方式
2019-10-16 13:56:16 +08:00
2019-12-12 16:24:04 +08:00
框架除了傳統方式投遞消息,還提供了註解方式。
2019-10-16 13:56:16 +08:00
> 註解方式會在非消費環境下自動投遞消息到隊列,故,如果我們在隊列中使用註解方式時,則不會再次投遞到隊列當中,而是直接在本消費進程中執行。
> 如果仍然需要在隊列中投遞消息,則可以在隊列中使用傳統模式投遞。
2020-01-16 14:33:32 +08:00
讓我們重寫上述 `QueueService`,直接將 `ExampleJob` 的邏輯搬到 `example` 方法中,並加上對應註解 `AsyncQueueMessage`,具體代碼如下。
2019-10-16 13:56:16 +08:00
```php
<?php
declare(strict_types=1);
namespace App\Service;
use Hyperf\AsyncQueue\Annotation\AsyncQueueMessage;
class QueueService
{
#[AsyncQueueMessage]
2019-10-17 09:59:01 +08:00
public function example($params)
2019-10-16 13:56:16 +08:00
{
2019-12-12 16:24:04 +08:00
// 需要異步執行的代碼邏輯
// 這裏的邏輯會在 ConsumerProcess 進程中執行
2019-10-16 13:56:16 +08:00
var_dump($params);
}
}
```
2020-01-16 14:33:32 +08:00
投遞消息
2019-10-16 13:56:16 +08:00
2020-01-16 14:33:32 +08:00
註解模式投遞消息就跟平常調用方法一致,代碼如下。
```php
<?php
declare(strict_types=1);
2019-07-25 10:05:33 +08:00
namespace App\Controller;
2019-07-25 10:05:33 +08:00
use App\Service\QueueService;
use Hyperf\Di\Annotation\Inject;
use Hyperf\HttpServer\Annotation\AutoController;
#[AutoController]
class QueueController extends AbstractController
{
2019-07-25 10:05:33 +08:00
/**
* @var QueueService
*/
#[Inject]
2019-07-25 10:05:33 +08:00
protected $service;
2019-10-29 17:03:10 +08:00
/**
2019-12-12 16:24:04 +08:00
* 註解模式投遞消息
2019-10-29 17:03:10 +08:00
*/
public function example()
{
$this->service->example([
'group@hyperf.io',
'https://doc.hyperf.io',
'https://www.hyperf.io',
]);
return 'success';
}
2019-03-30 15:00:10 +08:00
}
2019-07-04 20:10:57 +08:00
```
2020-02-29 13:23:57 +08:00
## 事件
| 事件名稱 | 觸發時機 | 備註 |
|:------------:|:-----------------------:|:----------------------------------------------------:|
| BeforeHandle | 處理消息前觸發 | |
| AfterHandle | 處理消息後觸發 | |
| FailedHandle | 處理消息失敗後觸發 | |
| RetryHandle | 重試處理消息前觸發 | |
| QueueLength | 每處理 500 個消息後觸發 | 用户可以監聽此事件,判斷失敗或超時隊列是否有消息積壓 |
### QueueLengthListener
框架自帶了一個記錄隊列長度的監聽器,默認不開啟,您如果需要,可以自行添加到 `listeners` 配置中。
```php
<?php
declare(strict_types=1);
return [
Hyperf\AsyncQueue\Listener\QueueLengthListener::class
];
```
### ReloadChannelListener
2021-04-02 12:55:30 +08:00
當消息執行超時,或項目重啟導致消息執行被中斷,最終都會被移動到 `timeout` 隊列中,只要您可以保證消息執行是冪等的(同一個消息執行一次,或執行多次,最終表現一致),
就可以開啟以下監聽器,框架會自動將 `timeout` 隊列中消息移動到 `waiting` 隊列中,等待下次消費。
> 監聽器監聽 `QueueLength` 事件,默認執行 500 次消息後觸發一次。
```php
<?php
declare(strict_types=1);
return [
Hyperf\AsyncQueue\Listener\ReloadChannelListener::class
];
```
2020-02-29 13:23:57 +08:00
## 任務執行流轉流程
任務執行流轉流程主要包括以下幾個隊列:
| 隊列名 | 備註 |
|:--------:|:-----------------------------------------:|
| waiting | 等待消費的隊列 |
| reserved | 正在消費的隊列 |
| delayed | 延遲消費的隊列 |
| failed | 消費失敗的隊列 |
| timeout | 消費超時的隊列 (雖然超時,但可能執行成功) |
隊列流轉順序如下:
```mermaid
graph LR;
A[投遞延時消息]-->C[delayed隊列];
B[投遞消息]-->D[waiting隊列];
C--到期-->D;
D--消費-->E[reserved隊列];
E--成功-->F[刪除消息];
E--失敗-->G[failed隊列];
E--超時-->H[timeout隊列];
```
## 配置多個異步隊列
當您需要使用多個隊列來區分消費高頻和低頻或其他種類的消息時,可以配置多個隊列。
1. 添加配置
```php
<?php
return [
'default' => [
'driver' => Hyperf\AsyncQueue\Driver\RedisDriver::class,
'channel' => '{queue}',
'timeout' => 2,
'retry_seconds' => 5,
'handle_timeout' => 10,
'processes' => 1,
'concurrent' => [
'limit' => 2,
],
],
'other' => [
'driver' => Hyperf\AsyncQueue\Driver\RedisDriver::class,
'channel' => '{other.queue}',
'timeout' => 2,
'retry_seconds' => 5,
'handle_timeout' => 10,
'processes' => 1,
'concurrent' => [
'limit' => 2,
],
],
];
```
2. 添加消費進程
```php
<?php
declare(strict_types=1);
namespace App\Process;
use Hyperf\AsyncQueue\Process\ConsumerProcess;
use Hyperf\Process\Annotation\Process;
#[Process]
class OtherConsumerProcess extends ConsumerProcess
2020-02-29 13:23:57 +08:00
{
protected string $queue = 'other';
2020-02-29 13:23:57 +08:00
}
```
3. 調用
```php
use Hyperf\AsyncQueue\Driver\DriverFactory;
use Hyperf\Utils\ApplicationContext;
$driver = ApplicationContext::getContainer()->get(DriverFactory::class)->get('other');
return $driver->push(new ExampleJob());
```
## 安全關閉
異步隊列在終止時,如果正在進行消費邏輯,可能會導致出現錯誤。框架提供了 `DriverStopHandler` ,可以讓異步隊列進程安全關閉。
> 當前信號處理器並不適配於 CoroutineServer如有需要請自行實現
安裝信號處理器
```
composer require hyperf/signal
```
添加配置
```php
<?php
declare(strict_types=1);
return [
'handlers' => [
Hyperf\AsyncQueue\Signal\DriverStopHandler::class,
],
'timeout' => 5.0,
];
```
2021-03-15 09:48:32 +08:00
## 異步驅動之間的區別
- Hyperf\AsyncQueue\Driver\RedisDriver::class
此異步驅動會將整個 `JOB` 進行序列化,當投遞即時隊列後,會 `lpush``list` 結構中,投遞延時隊列,會 `zadd``zset` 結構中。
所以,如果 `Job` 的參數完全一致的情況,在延時隊列中就會出現後投遞的消息 **覆蓋** 前面投遞的消息的問題。
如果不想出現延時消息覆蓋的情況,只需要在 `Job` 裏增加一個唯一的 `uniqid`,或者在使用 `註解` 的方法上增加一個 `uniqid` 的入參即可。